0

我不确定这是否与我的 Fluent 配置或我的思维逻辑有关。

基本上我有一个 Person 类,我从中继承了两个类,Author 和 Borrower(它是一个库系统)。我的映射是。

public class PersonMap : ClassMap<Person>
{
    public PersonMap()
    {
        Id(x => x.Id, "id");
        Map(x => x.Name, "name");

        // Subclasses
        AddPart(new AuthorMap());
        AddPart(new BorrowerMap());
    }
}

public class AuthorMap : JoinedSubClassPart<Author>
{
    public AuthorMap() : base("person_id")
    {
        Map(x => x.Country, "country");
        HasMany(x => x.Books).Cascade.All().WithKeyColumn("book_id"); 
    }
}

public class BorrowerMap : JoinedSubClassPart<Borrower>
{
    public BorrowerMap() : base("person_id")
    {
        Map(x => x.UserName, "user_name");
        HasMany(x => x.Schedule).Cascade.SaveUpdate().WithKeyColumn("borrower_id");
    }
}

现在,如果我运行 HQL “FROM Author a ORDER BY a.Name”,它将返回所有作者和借款人实体的列表,我显然只想要一个作者列表。请随时让我明白这一点。

4

1 回答 1

0

有几件事要尝试:

  • 在每个子类映射中,将表名设置为WithTableName("Author")
  • person_id每个子类表上的键列吗?如果没有,请更改base("person_id")base("key column name")

例如,我刚刚使用以下映射测试了一个非常相似的查询:

public class DigitalFreeSubscriptionMap : JoinedSubClassPart<DigitalFreeSubscription>
{
    public DigitalFreeSubscriptionMap()
        : base("DigitalFreeSubscriptions")
    {
        WithTableName("DigitalFreeSubscriptions");
        ...

public class FreeSubscriptionMap : JoinedSubClassPart<FreeSubscription>
{
    public FreeSubscriptionMap()
        : base("FreeSubscriptions")
    {
        WithTableName("FreeSubscriptions");
        ...

两者都是 的子类Subscription。在我测试的数据库中,有 1700 个 DigitalFreeSubscriptions,而有超过一百万个 FreeSubscripions(和其他类型的订阅)。HQL 查询“ FROM DigitalFreeSubscripion”返回 1700 个结果。

每个请求,SubscriptionMap 的顶部:

public class SubscriptionMap : AuditableClassMap<Subscription>
{
    public SubscriptionMap()
    {
        WithTable("Subscriptions");
        Id(x => x.Id, "Subscriptions");

        AddPart(new FreeSubscriptionMap());
        AddPart(new DigitalFreeSubscriptionMap());
        // More sublass mappings and then the field mappings
于 2009-03-12T21:25:46.043 回答