开发者

Is there anything like `L2Sql IMultipleResults` in `Entity Framework 4`?

开发者 https://www.devze.com 2023-02-05 05:20 出处:网络
In Linq 2 Sql, we can retrieve multiple re开发者_StackOverflow中文版sultsets from the same sp if we know the sequence of tables returned using IMultipleResults , ResultType and GetResult<>.

In Linq 2 Sql, we can retrieve multiple re开发者_StackOverflow中文版sultsets from the same sp if we know the sequence of tables returned using IMultipleResults , ResultType and GetResult<>.

I am sure, there must be a method in entity framework 4 for doing this.


You would think so, wouldn't you. :)

They couldn't sneak it in time for EF4.

In the meantime, you've got 2 options:

  1. Use the EF Extensions project.
  2. Use ObjectContext.Translate. You still need to iterate through the DataReader using classic ADO.NET though.

Check out this blog, look for the comment from Danny Simmons to explain the above.

0

精彩评论

暂无评论...
验证码 换一张
取 消