Jump to content

Merged TV Shows


TeamB

Recommended Posts

TeamB

When I am using:

InternalItemsQuery query = new InternalItemsQuery();
query.ParentIds = new long[] { long_id };
var results = _lm.GetItemList(query);

How do I get seasons and episodes of merged TV Shows.

 

Link to comment
Share on other sites

So that will be a straight folder query.

 

If you have one of the series objects you could use series.getitems, that is probably the best way.

Link to comment
Share on other sites

TeamB

Ok cool, using the getitems on a series look like it should work.

 

I also found these:

query.GroupByPresentationUniqueKey = false;
query.GroupBySeriesPresentationUniqueKey = false;
query.GroupItemsIntoCollections = false;

Which list all movies and TV Shows that have been grouped up as separate items.

This may better suit my needs.
 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...