I am thinking of using POCO instead of automatically creating entities, because I don't want any structure dependency
I was wondering if this would have any kind of performance hit, I'm not sure if dynamically proxying my entities at runtime will affect performance,
I also wonder if it will be faster if I just let EF4 generate the model for me.
My current project cares a lot about performance, and I read many times about how L2S is slightly faster than EF2, but I'm not sure about EF4, so now I wonder if I will have performance problems using EF4 instead of Linq2SQL .
I really want to use POCO; therefore I prefer EF4, but again I do not want to have a performance problem.
EF4 and Ling2SQL are the only options for me because I cannot use the native ADO.net or any other ORM, so can you share your experience regarding EF4 and Linq2SQL in terms of performance?
early.
source
share