I play with the new Netflix OData feed ( http://odata.netflix.com/Catalog/ ) and some problems. I am trying to learn LINQ at the same time, but having difficulty doing what I thought would be fairly simple.
I would like to return a list of names that correspond to this genre. The Titles object contains a collection of genres. I am not sure how to write this request. My attempt below does not work using LINQPad .
from t in Titles
where t.Genres.Name.Contains("ABC")
select t
source
share