3

我在尝试使用旧数据库模式创建映射的当前场景中苦苦挣扎:

我有一对由复合键链接的父/子类,我正在使用 FluentNHibernate 创建映射和它们之间的关联。以下是课程:

/*Parent Class*/
public class Comprobante : Model<Comprobante>
{    
    public virtual IList<CuotaComprobante> Cuotas { get; protected set; }

    public virtual string NumeroComprobante { get; protected set; }
    public virtual string Tipo { get; protected set; }

    public Comprobante(){ }
}

/*Child Class*/
public class CuotaComprobante : Model<CuotaComprobante>
{
    public virtual Comprobante Comprobante { get; protected set; }

    public virtual string Estado { get; protected set; }
    public virtual DateTime FechaVencimiento { get; protected set; }

    /*!!!Want to get rid of this two properties in the child class*/                     
    public virtual string NumeroComprobante { get; protected set; }
    public virtual string Tipo { get; protected set; }


    public CuotaComprobante(){ }
}  

这是数据库模式:

Comprobante Table (gva12)
 - ID_GVA12
 - N_COMP (NumeroComprobante property in Comprobante class)
 - T_COMP (Tipo property in Comprobante class)

CuotaComprobante Table (gva46)
 - ID_GVA46
 - N_COMP
 - T_COMP

因此,如您所见,N_COMP 和 T_COMP 字段是复合键的一部分(ID_GVA12 和 ID_GVA46 都不用于数据库中的关系)。我已经尝试过使用 HasMany 关系(如下面的代码所示),但它只使用 T_COMP 字段执行连接,这给了我比预期更多的结果。您可能已经注意到,我只是在子类中创建了属性“NumeroComprobante”和“Tipo”用于映射目的,但我真的很想摆脱它们,因为它是我在父类中已经拥有的信息,或者替换它们引用了 Comprobante 类。

HasMany(x => x.Cuotas)
            .KeyColumn("N_COMP").PropertyRef("NumeroComprobante")
            .KeyColumn("T_COMP").PropertyRef("Tipo")
            .Inverse(); 

所以我的问题是:有什么办法可以实现吗?我真的没有想法,因为我是一个有映射和谷歌搜索的新手并没有真正提供任何帮助。

提前致谢!

毛里西奥

4

1 回答 1

3

尝试

Component(x => x.ComponentContainingNumeroAndTipo, c =>
{
    c.Map(x => x.NumeroComprobante, "N_COMP");
    c.Map(x => x.Tipo, "T_COMP");
});

HasMany(x => x.Cuotas)
        .KeyColumns.Add("N_COMP", "T_COMP")
        .PropertyRef("ComponentContainingNumeroAndTipo")
        .Inverse();
于 2012-10-16T12:43:19.583 回答