Fluent NHibernate 映射继承

发布于 2024-11-17 14:12:15 字数 388 浏览 1 评论 0原文

即使数据库中不存在该对象,我也可以映射一个抽象类吗?

示例:

public abstract class Type
{
  public string Id{get; set;}
}

子类:

public class TypeA : Type
{
}

public class TypeB : Type
{
}

需要引用基类的类:

public class Other
{
  public Type MyType{get; set;}
}

该类型在我的数据库中不存在,但我需要此映射到其他类中的引用,我如何映射它?

谢谢。

Can I have map a abstract class even the object doesn´t exists in my database?

Example:

public abstract class Type
{
  public string Id{get; set;}
}

And the subs:

public class TypeA : Type
{
}

public class TypeB : Type
{
}

A class who needs the reference to base class:

public class Other
{
  public Type MyType{get; set;}
}

The Type doesn´t exists in my database, but I need this map to references in other classes, how I can map this?

Thanks.

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

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

发布评论

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

评论(1

蝶…霜飞 2024-11-24 14:12:15

我会让抽象类像一个“假”地图,现在我的问题已经解决了。
谢谢。

I´ll let the abstract class like a "fake" map, for now my problem is resolved.
Thanks.

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