aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-06 00:50:39 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-06 00:50:39 -0400
commit5a496a1fc8d9ee2e728d6f712ae6bdf4862183f1 (patch)
tree70f8d08ae6cd74e08f5800136fe73728fd0ad3d0 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs
parent242fb3c770a657e3c2a23ac21ec7d902879d8023 (diff)
reduce recursive querying
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
-rw-r--r--MediaBrowser.Controller/Entities/InternalItemsQuery.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
index 6838fde71..2615f351a 100644
--- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
+++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
@@ -49,6 +49,7 @@ namespace MediaBrowser.Controller.Entities
public string PresentationUniqueKey { get; set; }
public string Path { get; set; }
public string Name { get; set; }
+ public string SlugName { get; set; }
public string Person { get; set; }
public string[] PersonIds { get; set; }
@@ -133,9 +134,13 @@ namespace MediaBrowser.Controller.Entities
public string[] AlbumNames { get; set; }
public string[] ArtistNames { get; set; }
-
+
+ public bool GroupByPresentationUniqueKey { get; set; }
+
public InternalItemsQuery()
{
+ GroupByPresentationUniqueKey = true;
+
AlbumNames = new string[] { };
ArtistNames = new string[] { };