How to get multiple result sets using Entity Data Framework from SQL Server?
For example, I need to get the Customer's personal and account details from a Stored Procedure that contains following queries
SELECT CustomerID,Name,Address FROM Customers
go
SELECT CustomerID,AccountCode FROM CustomerAccounts
But when I create ComplexType, only the first statement is executed.
Please help.......