I recently started learning the Entity Framework.
The first question posed in my mind:
When we want to use LINQ to retrieve data in EF, each query looks like this:
var a = from p in contacts select p.name ;
will be converted to SQL commands as follows:
select name from contacts
- Is this conversion repeated every time we request?
- I heard that stored procedures are cached in the database, does this event occur in LINQ queries in the Entity Framework?
And finally my question is clear?
performance linq-to-entities entity-framework entity-framework-4
Shahin
source share