I'm just starting out with the Entity Framework, and I appreciate the direct mapping of code to tables in my database. What I don't see yet is the practicality of using EF over stored procedures, and I would appreciate any opinion on that. I'm not lazy, and now I'm looking for it myself. I think I can post this question and hear from others.
In my case, EF is the ORM most suitable for matching in tables in my database. But on a real web server, there may be many queries that may be taxed in the database when compiling text queries before they are executed, compared to simply executing a stored procedure that has already been precompiled. EF can also be displayed in SP, but I feel that this somewhat reduces the value of ORM.
In this case, I would really appreciate the discovery.
Ronald
source share