Can I easily evaluate many IQueryables in a single database call using Entity Framework?
问题 Suppose I have a collection (of arbitrary size) of IQueryable<MyEntity> (all for the same MyEntity type). Each individual query has successfully been dynamically built to encapsulate various pieces of business logic into a form that can be evaluated in a single database trip. Is there any way I can now have all these IQueryable s executed in a single round-trip to the database? For example (simplified; my actual queries are more complex!), if I had ObjectContext context = ...; var myQueries =