Fluent NHibernate - 对派生类的查询

发布于 2024-12-07 21:36:33 字数 563 浏览 0 评论 0原文

假设我有两个类:

public class A
{
  public virtual int Id { get; set; }
  public virtual Object1 Obj { get; set; }
}

public class B : A
{
  public new virtual Object2 Obj { get; set; }
}

我使用 Fluent NHibernate,并且为这两个类创建了两个不同的映射。但是,当我尝试在存储库中查询 A 类时,FNH 会找到 B 类和 A 类,这是有道理的,因为两者都是 A。

示例(此条件将同时查询 A 和 B):

public List<T> GetByName(string name)
{
  return Session.CreateCriteriaOf<A>.Add(Restrictions...);
}

在编写 CreateCriteriaOf< 时;A>,我只想查询 A - 而不是 B。我该如何解决我的问题?

Lets say I have two classes:

public class A
{
  public virtual int Id { get; set; }
  public virtual Object1 Obj { get; set; }
}

public class B : A
{
  public new virtual Object2 Obj { get; set; }
}

I use Fluent NHibernate and I have created two different mappings for the two classes. However, when I try to query class A in my repository, FNH finds both class B and A, which kind of makes sense since both are A.

Example (this criteria will query over both A and B):

public List<T> GetByName(string name)
{
  return Session.CreateCriteriaOf<A>.Add(Restrictions...);
}

When writing CreateCriteriaOf<A>, I only want to query over A - not B. How can I solve my problem?

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

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

发布评论

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

评论(1

血之狂魔 2024-12-14 21:36:33

我认为你最好创建一个继承树,其中 A 和 B 都派生自公共(抽象)基类型。然后 NHibernate 可以通过鉴别器列进行区分。

当然,您的数据模型应该适应这一点,所以我希望您的模型没有以任何方式规定。

I think you better make an inheritance tree where both A and B derive from a common (abstract) base type. Then NHibernate can make the distinction by a discriminator column.

Of course, your data model should accommodate this, so I hope your model is not prescribed in any way.

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