Can the Entity Framework work with multiple result sets (each of joined tables) from a stored procedure?

In Linq to SQL, I cannot find an easy way to handle the multiple result sets returned by the stored procedure, where each result set is associated with tables. Each result set does not map directly to the table. (cannot change this behavior). At the moment, it seems that using a DataSet is a lot easier.

Can the current Entity Framework or the upcoming version 4.0 work with these scripts directly from the designer? Or is it even easy to make out of code?

+5
source share

All Articles