Chaining IQueryables together
- by Matt Greer
I have a RIA Services based app that is using Entity Framework on the server side (possibly not relevant). In my real app, I can do something like this.
EntityQuery<Status> query = statusContext.GetStatusesQuery().Where(s => s.Description.Contains("Foo"));
Where statusContext is the client side subclass of DomainContext that RIA…