外键从同一个表中接收两个主键 - Fluent Nhibernate

时间:2014-12-08 18:30:07

标签: c# nhibernate fluent-nhibernate

我在尝试创建一个从一个表接收一个外键并从另一个表接收另一个外键的复合ID时遇到问题,但是这个第二个外键包含两个主键,这让我很难解决。有谁知道如何解决这个问题?

这是我的代码:

实体

public class GrupoArquivo
{
    public GrupoArquivo() {}

    public GrupoArquivo(ArquivoRetorno arquivoRetorno, GrupoModulo grupo, GrupoModulo modulo) : this()
    {
        Arquivo = arquivoRetorno;
        Grupo = grupo;
        Modulo = modulo;
    }

    public virtual ArquivoRetorno Arquivo { get; protected set; }
    public virtual GrupoModulo Grupo { get; protected set; }
    public virtual GrupoModulo Modulo { get; protected set; }

    public override bool Equals(object obj)
    {
        var grupoArquivo = (obj as GrupoArquivo);

        if (grupoArquivo != null)
        {
            if (ReferenceEquals(obj, this))
                return true;

            var thisHash = GetHashCode();
            var otherHash = grupoArquivo.GetHashCode();

            return thisHash.Equals(otherHash);
        }
        return false;
    }

    public override int GetHashCode()
    {
        return string.Concat("{0}|{1}|{2}", Arquivo, Grupo, Modulo).GetHashCode();
    }
}

映射

 public class GrupoArquivoMap : ClassMap<GrupoArquivo>
{
    public GrupoArquivoMap()
    {
        Schema(Const.SCHEMA);
        Table(Const.TB_EMAIL_GRUPO_ARQUIVO);

        CompositeId()
            .KeyReference(x => x.Arquivo, Const.ID_ARQUIVO)
            .KeyReference(x => x.Grupo, Const.ID_GRUPO)
            .KeyReference(x => x.Modulo, Const.ID_MODULO)
            ;
    }
}

1 个答案:

答案 0 :(得分:1)

我解决了它并且它非常简单&#34;,我必须在实体中仅引用每个表一次,并且在映射中我定义了同一个表中来自同一个表的两个列#34 ; KeyReference&#34;

实体

    public GrupoArquivo() {}

    public GrupoArquivo(ArquivoRetorno arquivoRetorno, GrupoModulo grupoModulo) : this()
    {
        Arquivo = arquivoRetorno;
        GrupoModulo = grupoModulo;
    }

    public virtual ArquivoRetorno Arquivo { get; protected set; }
    public virtual GrupoModulo GrupoModulo { get; protected set; }

    public override bool Equals(object obj)
    {
        var grupoArquivo = (obj as GrupoArquivo);

        if (grupoArquivo != null)
        {
            if (ReferenceEquals(obj, this))
                return true;

            var thisHash = GetHashCode();
            var otherHash = grupoArquivo.GetHashCode();

            return thisHash.Equals(otherHash);
        }
        return false;
    }

    public override int GetHashCode()
    {
        return string.Concat("{0}|{1}|{2}", Arquivo, GrupoModulo).GetHashCode();
    }

映射

public class GrupoArquivoMap : ClassMap<GrupoArquivo> 
{
    public GrupoArquivoMap()
    {
        Schema(Const.SCHEMA);
        Table(Const.TB_EMAIL_GRUPO_ARQUIVO);

        CompositeId()
            .KeyReference(x => x.Arquivo, Const.ID_ARQUIVO)
            .KeyReference(x => x.GrupoModulo, Const.ID_GRUPO, Const.ID_MODULO)
            ;
    }
}