使用 EF 延迟加载和 DynamicProxy 的 Memcached 缓存
我们正在尝试使用二进制序列化器在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实体框架使用动态代理来支持延迟加载。顾名思义,这些类型是在运行时动态生成的,因此当您尝试反序列化存储的类型时,这些类型可能在应用程序域中不可用。
作为一种可能的解决方案,您可以使用 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