Reputation: 1808
I am using Entity Framework 4 for one of my projects. I am looking for the solution to reduce the database calls by returning multiple resultset. How can i achieve this using Entity Framework.
Thanks
Upvotes: 1
Views: 787
Reputation: 122032
You can try using Stored Procedures with EF Extensions.
This post deals with EF Extensions, it contains Multiple Result Sets section as well.
Upvotes: 3