如何使用抽象类在 linq to sql 类中创建继承

发布于 2024-11-07 17:36:59 字数 315 浏览 0 评论 0原文

我想要一个抽象类,其中包含 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

OR Design

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

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

发布评论

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

评论(1

错爱 2024-11-14 17:36:59

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

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