使用 EF 延迟加载和 DynamicProxy 的 Memcached 缓存

发布于 2024-12-11 07:59:30 字数 297 浏览 0 评论 0原文

我们正在尝试使用二进制序列化器在 Memcached 中缓存从 IDbSet 检索的实体。

一切正常,直到我们尝试在后续请求中从缓存中反序列化实体。

Unable to load type System.Data.Entity.DynamicProxies.users_131D253E3297AF73E52D604FD8627E3CE98FBA26BF1FBA904A6774E41F3D1550 required for deserialization.

有人有什么想法吗?您需要代码示例吗?

We are trying to cache Entities retrived from IDbSet in Memcached with binary serializer.

Everything works fine until we try to deserialize entity from cache on subsequent request.

Unable to load type System.Data.Entity.DynamicProxies.users_131D253E3297AF73E52D604FD8627E3CE98FBA26BF1FBA904A6774E41F3D1550 required for deserialization.

Anybody have any ideas? Do you need code examples?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

深白境迁sunset 2024-12-18 07:59:30

实体框架使用动态代理来支持延迟加载。顾名思义,这些类型是在运行时动态生成的,因此当您尝试反序列化存储的类型时,这些类型可能在应用程序域中不可用。

作为一种可能的解决方案,您可以使用 Entity Framework Code First(没有 virtual 属性),或使用 EF 缓存

Entity framework uses dynamic proxies to support lazy loading. As the name implies, these types are generated dynamically at runtime, and therefore may not be available in the App Domain when you try to deserialize the stored types.

As a possible solution, you could use Entity Framework Code First (without virtual properties), or use EF caching

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