views:

98

answers:

1

I have been attempting to implement the Entity framework into my project and unfortunately it seems like mapping an XML result set from SQL is not something that is supported. I also have issues with returning multiple result sets, though I understand that the EFExtensions was created to try to mitigate that issue.

Is there a way to take a FOR XML EXPLICIT result from a SQL Stored Procedure and map it using the Entity Framework?

Just to be clear I am looking for a way to have the framework auto-generate the strongly typed object from my procedure, or do I have to do this manually and handle the serialization?

A: 

I am also facing the same issue. Some of my SP returns Multiple resultset and some return XML Output parameter. Is this possible?

Chocks