NHibernate MappingByCode映射IDictionary <entity,entity> </entity,entity>

时间:2013-10-29 08:10:44

标签: c# nhibernate nhibernate-mapping mapping-by-code

尝试用FNH映射并遇到很多问题,并最终发现FNH缺乏,而且不再维护,所以我决定尝试Nhibernate MappingByCode,它到目前为止工作但没有文档... < / p>

我找不到如何映射IDictionary

        Map(x => x.EntityDict,
            m =>
            {
                m.Key(k => k.Column("ParentID"));
            },
            km =>
            {
                km.//??ManyToMany
            vm =>
            {
                vm.//??ManyToMany
            }
            );

km(键映射)中的选项是元素(值类型)/组件(同一个表中的内部对象)/ ManyToMany(我在这个上下文中并不真正理解)

我尝试使用ManyToMany,因为它似乎是最合乎逻辑的东西,但它没有用。

保存字典SaveUpdate时,但它没有保存到数据库中,并且无法获取字典。

编辑:这里是样本字典结构

public class Entity1Map : ClassMapping<Entity1>
{
    public Entity1Map()
    {
         Id(x=> x.ID,m=>m.Generator(Generators.Guid));
    }
}

public class Entity2Map : ClassMapping<Entity2>
{
    public Entity2Map()
    {
         Id(x=> x.ID,m=>m.Generator(Generators.Guid));
    }
}


public class Entity3 { public IDictionary<Entity1,Entity2> Dict { get;set; } }
public class Entity3Map : ClassMapping<Entity3>
{
    public Entity3Map()
    {
         Id(x=> x.ID,m=>m.Generator(Generators.Guid));

         //Map Dict??
    }
}

表结构 -

Entity1 Table : ID Column
Entity2 Table : ID Column
Entity3 Table : ID Column
Dict Table : Entity3_ID,Entity1_ID,Entity2_ID

如果保存并从不同的数据库中重新创建

,则不必是此表结构

@Daniel - 这是hbm

<map name="Targets" table="Dict">
  <key column="Entity3ID" />
  <map-key-many-to-many class="Entity1" column="Entity1ID" />
  <many-to-many class="Entity2" column="Entity2ID" />
</map>

编辑3(我认为):

        var entity3 = new Entity3();
        var entity1 = new Entity1();
        var entity2= new Entity2();
        entity3.Dict[entity1] = entity2;

        using (var session = GetSession())
        {
            session.SaveOrUpdate(entity1);
            session.SaveOrUpdate(entity2);
            session.SaveOrUpdate(entity3 );
            session.Flush();
        }

1 个答案:

答案 0 :(得分:2)

NHibernate Collections

每个NHibernate集合(bagsetmaplist等)都有key和描述集合内容的内容。一些集合类型listmap也有一些描述集合索引的内容。

key是指向拥有该集合的实体的外键。

该集合的内容将由以下元素之一描述:

  • one-to-many:集合的内容是某种实体,该实体的表用作集合的表。这意味着另一个实体可能与此关系有many-to-one关系。您是否真的最终在对象模型中包含该关系是另一回事。
  • many-to-many:集合的内容是一个实体,但集合使用了一个中间表,以便集合元素可以被其他集合重用。
  • element:集合的内容是某种简单的值类型,例如intstring等。应该为集合指定table这些值类型没有他们通常居住的任何特定表。
  • composite-element:与element类似,但此处有多列映射到组件类中的属性。

最后,对于索引,您的选择是:

  • index:索引是一种简单的值类型,如intstring。这是list唯一可用的索引类型。在list上,这些值直接对应于列表的索引值list[0]list[1]等,因此此列中的非连续值将导致一些空值。 NET集合。对于indexlist-indexmap-key已分别重命名为listmap。旧名和新名都应该有用。
  • index-many-to-many:索引是一个实体。 index-many-to-many已重命名为map-key-many-to-many。新旧名称都有效。

可能还有一些选项,但这些是最常用的选项。

你的词典

在您的情况下,Entity3Entity2的字典,由Entity1编制索引,并且单独的表用于跟踪Entity2和此集合。这意味着我们需要map map-key-many-to-many(因为索引是实体)和many-to-many(因为内容是实体,但我们使用的是单独的表)。在HBM XML中,这看起来像:

<map name="Dict" table="Dict">
    <key column="Entity3_ID" />
    <map-key-many-to-many class="Entity1" column="Entity1_ID" />
    <many-to-many class="Entity2" column="Entity2_ID" />
</map>

您可以使用AsEntityMap方法在FluentNHibernate中执行此操作:

HasManyToMany(x => x.Dict)
    .Table("Dict")
    .ParentKeyColumn("Entity3_ID")
    .AsEntityMap("Entity1_ID", "Entity2_ID");

通过代码映射,我会想象像这样......

Map(x => x.Dict,
    c =>
    {
        c.Table("Dict");
        c.Key(k => k.Column("Entity3_ID"));
    },
    i => i.ManyToMany(m => m.Column("Entity1_ID")),
    v => v.ManyToMany(m => m.Column("Entity2_ID")));

......会做的。

我没有测试过上面的映射,这是我第一次尝试按代码映射,所以请告诉我它是否有效。