简体   繁体   中英

Is all the query in Entity framework 6 is already compiled?

I want to optimized my queries in Entity Framework 6.1.3 , so I need to know that whether queries are already CompiledQueries or I need to write them manually as CompiledQuery?

Thanks in advance.

No, they are not. You'll need to specify that you want to use a CompiledQuery.

That said, using a compiled query will only provide a 7% performance improvement. If tuning performance of EF really is a major issue for you, I recommend reading the following:

https://msdn.microsoft.com/en-us/data/hh949853

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM