views:

213

answers:

1

Hello,

I have stored Procedure getSalesOrder() returning a row structure like this:

Order (map with EF), customfield1 , customfield2 ,customfield3.

How can i use EntityFramework to get the order, and custom Fields Values ?

+2  A: 

With the currently shipping Entity Framework, you can't. Stored procedures returning scalar values is, I believe, a feature scheduled for the .NET framework 4.0.

Craig Stuntz