Dynamic Linq query issue
- by Alex
Hey All,
Im trying to query the Netflix OData feed. I have the following query that works fine in LinqPad:
from g in Genres
from t in g.Titles
where g.Name == "Horror" && t.AverageRating == 2 && t.ReleaseYear == 2004
select t
But, when I move it over to my Silverlight app, the user selects what to search on so I may or may not…