c# - 如何在 NHibernate 中映射多对多对多的三元关系?

标签 c# hibernate nhibernate nhibernate-mapping hibernate-mapping

尝试建立多对多对多关联。

我目前的情况是这样的:

namespace com.example // Assembly = com.example
{

    public class Foo
    {
        public virtual long Id { get; set; }
        public virtual IDictionary<string, ISet<PersistentClass>> MappedCollections { get; set; }
    }

    public class PersistentClass
    {
        public virtual long Id { get; protected set; }
        public virtual string Prop { get; set; }
    }
}

这是我的映射:

<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">

  <class name="com.example.Foo, com.example">
    <id name="Id" type="Int64" generator="hilo" />
    <map name="MappedCollections">
      <key column="Id" />
      <index column="Key" type="String" />
      <many-to-many class="com.example.PersistentClass, com.example" />
    </map>
  </class>

  <class name="com.example.PersistentClass, com.example">
    <id name="Id" type="Int64" generator="hilo" />
    <property name="Prop" />
  </class>

</hibernate-mapping>

创建模式会生成以下 SQL(SqlServer 示例):

if exists (select 1 from sys.objects where object_id = OBJECT_ID(N'[FKC8D94E45A4783B9]') AND parent_object_id = OBJECT_ID('MappedCollections'))
alter table MappedCollections  drop constraint FKC8D94E45A4783B9


if exists (select 1 from sys.objects where object_id = OBJECT_ID(N'[FKC8D94E46534DBE0]') AND parent_object_id = OBJECT_ID('MappedCollections'))
alter table MappedCollections  drop constraint FKC8D94E46534DBE0


if exists (select * from dbo.sysobjects where id = object_id(N'Foo') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table Foo

if exists (select * from dbo.sysobjects where id = object_id(N'MappedCollections') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table MappedCollections

if exists (select * from dbo.sysobjects where id = object_id(N'PersistentClass') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table PersistentClass

if exists (select * from dbo.sysobjects where id = object_id(N'hibernate_unique_key') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table hibernate_unique_key

create table Foo (
    Id BIGINT not null,
   primary key (Id)
)

create table MappedCollections (
    Id BIGINT not null,
   elt BIGINT not null,
   Key NVARCHAR(255) not null,
   primary key (Id, Key) -- !! WRONG !! should be unique (Id, elt, Key)
)

create table PersistentClass (
    Id BIGINT not null,
   Prop NVARCHAR(255) null,
   primary key (Id)
)

alter table MappedCollections 
    add constraint FKC8D94E45A4783B9 
    foreign key (elt) 
    references PersistentClass

alter table MappedCollections 
    add constraint FKC8D94E46534DBE0 
    foreign key (Id) 
    references Foo

create table hibernate_unique_key (
     next_hi BIGINT 
)

insert into hibernate_unique_key values ( 1 )

知道我做错了什么吗?从我们的 SQL 中,我们可以看到它一直保持为 IDictionary<string, PersistentClass>。而不是 IDictionary<string, ISet<PersistentClass> , 我不想要许多 Foo 的多对多关系多对 stringPersistent类,其中每一对都是唯一的 Foo .所有三个 值都应该创建一个唯一值。

我该怎么做?

(注意:我包含了 Hibernate 标签,因为无论是 Hibernate 还是 NHibernate,这种关系的 xml 映射应该是相同的)

最佳答案

虽然它创建了一个不必要的连接,但创建另一个实体可以做到这一点,同时保持非常相似的公共(public)接口(interface)。

基本上:

namespace com.example // Assembly = com.example
{

    public class Foo
    {
        public virtual long Id { get; set; }

        public virtual ReadOnlyDictionary<string, ISet<PersistentClass>> MappedCollections 
        { 
            get 
            { 
                return new ReadOnlyDictionary<string, ISet<PersistentClass>>(_mc); 
            } 
        }

        protected virtual IDictionary<string, PersistentClassSet> _mc { get; set; }
        public virtual void InitializeCollection(string key)
        {
            if (!_mk.ContainsKey(key))
                _mc[key] = new PersistentClassSet();
        }
    }

    public class PersistentClass
    {
        public virtual long Id { get; protected set; }
        public virtual string Prop { get; set; }
    }

    internal class PersistentClassSet : ISet<PersisitentClass>
    {
        public PersistentClassSet()
        {
            Proxy = new HashSet<PersistentClass>();
        }

        protected virtual long Id { get; set; }
        protected virtual ISet<PersistentClass> Proxy { get; set; }

        public bool Add(PersistentClass item)
        {
            return Proxy.Add(item);
        }

        // other ISet implementations delegated to Proxy 
    }
}

映射如下:

<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">

  <class name="com.example.Foo, com.example">
    <id name="Id" type="Int64" generator="hilo" />
    <map name="MappedCollections">
      <key column="Id" />
      <index column="Key" type="String" />
      <many-to-many class="com.example.PersistentClassSet, com.example" />
    </map>
  </class>

  <class name="com.example.PersistentClass, com.example">
    <id name="Id" type="Int64" generator="hilo" />
    <property name="Prop" />
  </class>

  <class name="com.example.PersistentClassSet, com.example">
    <id name="Id" type="Int64" generator="hilo" />
    <set name="Proxy">
      <key column="Id"/>
      <many-to-many class="com.example.PersistentClass, com.example" />
    </set>
  </class>
</hibernate-mapping>

关于c# - 如何在 NHibernate 中映射多对多对多的三元关系?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34346239/

相关文章:

c# - 如何从另一个表中获取与另一个表中的名称或ID匹配的相同名称或ID

java - Hibernate手动删除特定的多对多关联

java - 为什么这个复合主键被视为唯一,我该如何修复它?

NHibernate:拦截器返回值的含义

c# - NHibernate - 根据子属性过滤掉结果

c# - C# 中的数组大小验证

c# - 在队列中查找特定操作的索引

java - getter 中返回空值

c# - 映射接口(interface)或抽象类组件

c# - ASP.NET 没有适合 WebSocketManagerMiddleware 的构造函数