Entity Framework Function Import when a Stored Procedure has two Result Sets
I have a stored procedure that our DBA wrote and I would like to map it to a function import in Entity Framework. This st开发者_StackOverflow中文版ored procedure returns two result sets. How is this handled in EF? Will I need to make the DBA write two stored procedures, one for each result set? Or is EF capable of handling this scenario?
Thanks in advance!
Doesn't work out of the box afaik, but have a look at the ADO.NET Entity Framework Extensions
精彩评论