linq to sql和继承问题

发布于 2024-08-20 19:29:22 字数 205 浏览 11 评论 0原文

有谁知道如何获取特定类型的继承代码(Linq to sql 中的单表继承)?

当我创建一个新的实体B(继承自A)时,我想在A中编写一些代码,这对于从A继承的所有对象都有效。

但是,当您创建一个新的实体B时,它的继承代码不是还填了。 有没有什么方法可以根据类型获取继承代码? 我知道 Table 类中有一个 metaTable 属性,但它是私有的,并且该类是密封的。

Does anyone know how to to get the inheritance code for a specific type (single table inheritance in Linq to sql) ?

When I create a new entity B (which is inherited from A), I would like to write some code in A, that is valid for all objects inherited from A.

However, when you create a new entity B, it's inheritance code is not yet filled in.
Is there any method to get the inheritance code based upon the type?
I know there is a metaTable property in the Table class, but it's private and the class is sealed.

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

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

发布评论

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

评论(1

爱殇璃 2024-08-27 19:29:22

终于找到了:

int继承代码= (int)DataContext.Mapping.GetMetaType(instance.GetType()).InheritanceCode;

finally found it :

int inheritanceCode= (int)DataContext.Mapping.GetMetaType(instance.GetType()).InheritanceCode;

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