2

我试图在FNH中映射下面的表/实体,并且似乎快速变得无处不在!流利的NHibernate映射 - 复合键

**Tables** 
Contacts 
    ID (PK - int - generated) 
    ... 

PhoneTypes 
    ID (PK - varchar - assigned) (e.g. MOBILE, FAX) 

ContactPhones 
    ContactRefId (PK - FK to Contacts) 
    PhoneTypeRefId (PK - FK to PhoneTypes) 
    ... 

(我要指出,我也使用S#ARP架构框架)

**Entities** 
public class Contact : Entity 
{ 
    (The ID property is defined in the Entity base class and is type int) 

    public virtual ICollection<ContactPhone> PhoneNumbers { get; set; } 
} 

public class PhoneType : EntityWithTypedId<string>, IHasAssignedId<string> 
{ 
    (The ID property is defined in the base class and is type string) 

    .... 
} 

public class ContactPhone : EntityWithTypedId<ContactPhoneId>, IHasAssignedId<ContactPhoneId> 
{ 
    public virtual Contact Contact { get; set; } 

    public virtual PhoneType PhoneType { get; set; } 
    .... 
} 

,我读了它与复合IDS工作时,对复合ID分隔成不同的建议类。 hibernate composite key

public class ContactPhoneId : EntityWithTypedId<ContactPhoneId>, IHasAssignedId<ContactPhoneId> 
{ 
    public virtual Contact Contact { get; set; } 

    public virtual PhoneType PhoneType { get; set; } 
} 
...I could just make this class serializable and override 
Equals and GetHashCode myself instead of using the S#arp Arch base class. 

我已经试过了现在我完全糊涂了映射这么多的组合。

这是我最新拍摄:

public class ContactMap : IAutoMappingOverride<Contact> 
{ 
    public void Override(AutoMapping<Contact> mapping) 
    { 
     mapping.HasMany<ContactPhone>(x => x.PhoneNumbers) 
      .KeyColumns.Add("ContactRefId") 
      .KeyColumns.Add("PhoneTypeRefId") 
      .AsSet() 
      .Inverse() 
      .Cascade.All(); 
    } 
} 


public class PhoneTypeMap : IAutoMappingOverride<PhoneType> 
{ 
    public void Override(AutoMapping<PhoneType> mapping) 
    { 
     mapping.Id(x => x.Id).Column("Id").GeneratedBy.Assigned(); 
    } 
} 


public class ContactPhoneMap : IAutoMappingOverride<ContactPhone> 
{ 
    public void Override(AutoMapping<ContactPhone> mapping) 
    { 
     mapping.Table("ContactPhones"); 
     mapping.CompositeId<ContactPhoneId>(x => x.Id) 
      .KeyReference(y => y.Contact, "ContactRefId") 
      .KeyReference(y => y.PhoneType, "PhoneTypeRefId"); 
    } 
} 

我已经试图生成的映射,其中最近的是当抛出许多例外:

Foreign key (FK672D91AE7F050F12:ContactPhones [ContactRefId, PhoneTypeRefId])) 
must have same number of columns as the referenced primary key (Contacts [Id]) 

有谁看到任何明显的是,我做错了?我是NH和FNH的新手,从这篇文章可能会很明显。 :-)另外,有没有人在使用S#arp Architecture时使用过这样的Composite Ids?什么是最佳实践(除了使用代理键:-))?

非常感谢......并对这篇长文章感到抱歉。

回答

0

我也有多对多的关系。我有我的设置是这样的:

mapping.HasManyToMany(x => x.Artists).Cascade.All().Inverse().Table("ArtistImages");

的ArtistImages表对表艺术家和图像的主键。