如何使用抽象类在 linq to sql 类中创建继承
我想要一个抽象类,其中包含 3 个扩展它的类,我需要使用 linq 将其保存到数据库中。我制作了一个包含父类和 3 个子类的所有属性的表。
无法弄清楚如何在 OR 设计器中正确设置它。
当我将 TimeRecord 的继承修饰符设置为“抽象”时,出现以下错误: 错误
I want to have an abstract class with 3 classes extending it which i need to save to a database using linq. I've made a table with all the attributes of the parent class and the 3 subclasses.
Can't figure out how to properly set this up in the OR designer.
When i set TimeRecord's Inheritance modifier to "abstract" i get the following error:
error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GetTable() 方法尝试创建抽象类的实例,但它不能这样做
从你的类中删除abstarct修饰符
The GetTable() method tries to create an instance of your class which is abstract it can't do that
remove abstarct modifier from your class