为实体框架中的实体创建基类
我想创建一个对我的所有实体都通用的基类。该类将具有 Save()、Delete()、GetByID() 等方法以及其他一些基本功能和属性。我在 Linq to SQL 方面有更多经验,希望能在 EF 中获得一些类似的好示例。谢谢。
I would like to create a base class that is somewhat generic for all of my entities. The class would have methods like Save(), Delete(), GetByID() and some other basic functionality and properties. I have more experience with Linq to SQL and was hoping to get some good examples for something similar in the EF. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样:
Like this:
ADO.NET 实体框架支持每个层次结构表和每个类型表继承。我建议您从这里开始< /a> 看看它是如何工作的。
The ADO.NET Entity Framework supports both Table-per-hierarchy and Table-per-type inheritance. I suggest you start here to see how it works.