Stored Procedures with Entity Framework
Chapter 7 introduces query translators. Now I'm using entity framework with some stored procedures. If I exectue a stored procedure the return type is ObjectResult. But in BookQueryTranslator, MemberQueryTranslator and BookTitleQueryTranslator the return type should be ObjectQuery. How do I handle stored procedures together with entity framework? could anyone give me an example how to accomplish this?!
|