EntityRef 和编译的 LINQ 计划

发布于 2024-10-24 09:26:01 字数 674 浏览 1 评论 0原文

有没有办法强制 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆光下的微笑 2024-10-31 09:26:01

不,没有办法强制 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文