I will be using Linq to Entities. The question that I have is, I will be calling Linq to Entities multiple times. Will Linq to Entities queries be cached will it is called several times? If not is there a way to cache the query so it is not compiled or generated every time it is called.
|
|
|
|
|
|
|
Generally speaking, not enough caching by default. There is a certain amount of compiled query caching which the Entity Framework does, but it does not live any longer than the ObjectContext. If you have short-lived ObjectContexts, like me, you will want something which lasts longer. That "something" is CompiledQuery. |
||
|
|
|
|
You can use a compiled query to keep the query from being generated every time. This will significantly improve performance if you are using the exact same query multiple times. http://thedatafarm.com/blog/data-access/compiled-queries-in-entity-framework/ |
||
|
|
|
|
Basically yes. UPDATE what you means by compiled queries? Queries which return always the same set of object? queries which compiled to IL? queries which return the same instances? |
||||
|
