用于映射表的附加列的子类

发布于 2024-12-10 08:24:04 字数 211 浏览 0 评论 0原文

我有实体类 A 和 Fluent NHibernate 映射 AMap ,它映射数据库表中的一些列(缺少一些字段)。我想创建从 A 继承的类 B (为了不破坏与其他实体的关系)并对其进行映射以允许访问未由基类映射的列。问题是我无法更改基类(AAMap)中的任何代码行。这个问题有什么解决办法吗?

I have entity class A and Fluent NHibernate map for it AMap which maps some columns from database table (a few fields are missing). I would like to create class B which inherits from A (to not break relations with other entities) and map for it to allow access to columns not mapped by base class. The problem is that I cannot change any line of code in base classes (A and AMap). Is there any solution for this problem?

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

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

发布评论

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

评论(2

假情假意假温柔 2024-12-17 08:24:04

我不确定你想如何使用它,但这可以做到

class B : A
{

}

class BMap : ClassMap<B>
{
    public BMap()
    {
        Table("A's tablename");
        ...
    }
}

,那么这应该是可能的,

someEntity.ListOfAs.Add(new B());

但不知道未来是否有问题

im not sure how you wanna use it but this could do

class B : A
{

}

class BMap : ClassMap<B>
{
    public BMap()
    {
        Table("A's tablename");
        ...
    }
}

then this should be possible

someEntity.ListOfAs.Add(new B());

dont know if there are problems down the road though

挽容 2024-12-17 08:24:04

据我了解要求,这是一个简单的 每个类层次结构的表< /a> 映射。为此,您需要一个鉴别器列。

有关映射,请参阅该页面上的最后一个示例:Fluent Wiki

As far as I understand the requirement, this is a simple table per class hierarchy mapping. You'll need a discriminator column for that.

For the mapping see the last example on that page: Fluent Wiki.

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