EntityRef 和编译的 LINQ 计划
有没有办法强制 LINQ-2-SQL 编译和缓存 EntityRef 的计划。
从内部分析中我们发现大量的 CPU 用于继续重新编译计划。
System.Reflection.Emit.DynamicMethod.CreateDelegate System.Data.Linq.SqlClient.ObjectReaderCompiler.Compile System.Data.Linq.SqlClient.SqlProvider.GetReaderFactory System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Compile System.Data.Linq.CommonDataServices+DeferredSourceFactory`1.ExecuteKeyQuery System.Data.Linq.CommonDataServices+DeferredSourceFactory`1.Execute System.Linq.Enumerable.SingleOrDefault System.Data.Linq.EntityRef`1.get_Entity
我更喜欢使用实体引用,但我想如果没有选择,我们可以手动编码。
Is there any way to force LINQ-2-SQL to compile and cache plans for EntityRef.
From internal profiling we are seeing a significant amount of CPU used to keep on recompiling plans.
System.Reflection.Emit.DynamicMethod.CreateDelegate System.Data.Linq.SqlClient.ObjectReaderCompiler.Compile System.Data.Linq.SqlClient.SqlProvider.GetReaderFactory System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Compile System.Data.Linq.CommonDataServices+DeferredSourceFactory`1.ExecuteKeyQuery System.Data.Linq.CommonDataServices+DeferredSourceFactory`1.Execute System.Linq.Enumerable.SingleOrDefault System.Data.Linq.EntityRef`1.get_Entity
I would prefer to use entity ref, but I guess if there is no choice we can hand code this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有办法强制 LINQ 2 SQL 编译和缓存 EntityRef 或 EntitySet 的查询。
它的实现中没有任何钩子。
如果您需要使用 CompiledQuery 您将必须编写自己的包装器和助手。
No, there is no way to force LINQ 2 SQL to compile and caches queries for EntityRef or EntitySet.
There are no hooks in the implementation for it.
If you need to use CompiledQuery you will have to write your own wrapper and helpers.