1

NHibernate 3.3.3 を使用して、FluentNHibernate マッピングを NHibernate マッピング バイコードに変換しようとしています。目標は、NHibernate 3.3.3 にアップグレードし、配布されるアセンブリの数を減らすことです。FluentNHibernate の References マッピングを多対 1 マッピングに変換する際に問題が発生しています。

私のエンティティの多くには、翻訳が必要な説明があります。このために、利用可能なすべての言語でこれらのテキストを含む Texts テーブルを使用します。テキスト ID を使用して Texts テーブルを参照し、データ アクセス オブジェクトで必要な言語をフィルター処理します。これは、NHibernate 3.1 と FluentNHibernate を使用して作成し、NHibernate 3.3.3 とコードによるマッピングを使用して作成しますが、MappingException と言って、プロパティ マッピングの列数が間違っています: Category.Description タイプ: テキストです。

新しいマッピングのどこが間違っていますか? または、このタイプのマッピングは NHibernate 3.3.3 では不可能です。

これは Texts テーブルです (SQL サーバー 2008)。

CREATE TABLE Texts (
    ID         int           NOT NULL,
    languageID nvarchar(10)  NOT NULL,
    Singular   nvarchar(max) NOT NULL,
    Plural     nvarchar(max) NULL,
CONSTRAINT PK_Texts PRIMARY KEY CLUSTERED (ID ASC, languageID ASC)
WITH (PAD_INDEX              = OFF,
      STATISTICS_NORECOMPUTE = OFF,
      IGNORE_DUP_KEY         = OFF,
      ALLOW_ROW_LOCKS        = ON,
      ALLOW_PAGE_LOCKS       = ON) ON [PRIMARY]) ON [PRIMARY]

テキストクラス:

public class Text
{
    public Text(int id, string language, string singular, string plural)
    {
        this.ID = new TextCompositeID(id, language);
        this.Singular = singular;
        this.Plural = plural;
    }
    public TextCompositeID ID { get; private set; }
    public string Plural { get; private set; }
    public string Singular { get; set; }
    public override bool Equals(object obj)
    {
        var text = (Text)obj;
        if (text == null)
        {
            return false;
        }
        return this.ID.Equals(text.ID);
    }
    public override int GetHashCode()
    {
        return this.ID.GetHashCode();
    }
}

例として、Category クラスを次に示します。

public class Category
{
    public int ID { get; set; }
    public Text Description { get; set; }
}

Category クラスの FluentNHibernate xml マッピングは次のようになります。

<class xmlns="urn:nhibernate-mapping-2.2"
       mutable="true"
       name="Category"
       lazy="false"
       table="Category"
       where="IsObsolete=0">
    <id name="ID" type="System.Int32">
        <column name="ID" not-null="true" />
        <generator class="native" />
    </id>
    <many-to-one cascade="none"
                 class="Text"
                 name="Description">
        <column name="TextID"
                not-null="true"
                unique="false" />
    </many-to-one>
</class>

これから生成されたもの:

public class CategoryMap : ClassMap<Category>
{
    public CategoryMap()
    {
        this.Table("Category");
        Not.LazyLoad();
        this.Where("IsObsolete=0");
        Id(x => x.ID)
            .Column("ID")
            .GeneratedBy.Native()
            .Not.Nullable();
        References(x => x.Description)
            .Column("DescriptionID")
            .Cascade.None()
            .Not.Unique()
            .Not.Nullable();
    }
}

これは、私が作成した NHibernate ClassMapping です。

public CategoryMap()
{
    this.Lazy(false);
    this.Mutable(true);
    this.Table("Category");
    this.Where("IsObsolete=0");
    this.Id(
        x => x.ID,
        map =>
        {
            map.Column("ID");
            map.Generator(Generators.Native);
        });
    this.ManyToOne(
        x => x.Description,
        map =>
        {
            map.Cascade(Cascade.None);
            map.Class(typeof(Text));
            map.Column("TextID");
            map.Fetch(FetchKind.Join);
            map.Lazy(LazyRelation.NoLazy);
            map.ForeignKey("none");
        });
}

これから、この xml マッピングを取得します。

<class name="Category"
       lazy="false"
       table="Category"
       where="IsObsolete=0">
    <id name="ID"
        column="ID"
        type="Int32">
        <generator class="native" />
    </id>
    <many-to-one name="Description"
                 class="Text"
                 column="TextID"
                 fetch="join"
                 foreign-key="none"
                 lazy="false" />
</class>
4

1 に答える 1