Hi. I have been trying to use precompiled stored procedures together with EntityFramework. I have not found a good way to do this, when the resultset does not map completly with an db-entity. The only way i get this to work, is when I define a view in the SQL databasen, and use this as an entity in the model. This view has to be exactly as the resultset from the stored proc.
Anyone that has a better way of doing this? I could of course use Linq, but the stored procs contains cursors, so a Linq query would create som perfomance issues.
