使用 POCO 模板实现 IEntityWithKey
我(对我来说,非常令人惊讶)从未见过任何关于此的问题或博客文章。
是否可以通过 POCO 类实现 IEntityWithKey 接口的方式修改 POCO T4 模板?我想这样做是为了能够将实体直接附加到 ObjectContext。
这可能吗?有什么缺点?
I (for me, quite surprisingly) have never seen any questions or blog posts about this.
Is it possible to modify the POCO T4 template in a way that POCO classes implement the IEntityWithKey interface? I would like to do this in order to be able to attach entities directly to the ObjectContext.
Is this possible? What are the drawbacks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有看到任何与此相关的问题,因为实现该接口将意味着您的实体不再是持久无知的(这是使用 POCO 的主要原因),因为它将公开依赖于实体框架的持久相关属性。这就是为什么没有人将它与 POCO 模板一起使用的原因。
但是,是的,可以实现这个接口。
You didn't see any question about this because implementing the interface will mean that your entity is not persistent ignorant any more (which is main reason to use POCO) because it would expose persistent related property dependent on Entity framework. That is the reason why nobody use it with POCO template.
But yes it is possible to implement this interface.