Fluent NHibernate HasManyToMany() IDictionary<>复合ID问题
我使用的是 Fluent NHibernate 1.1.1.694,它使用的语法与 FNH1.0 略有不同,特别是在字典映射方面。
在我的模型中,我有员工、地址和地址类型(邮政、物理等)。
public class Employee
{
// <snip other properties />
public virtual IDictionary Addresses { get; set; }
public Employee()
{
this.Addresses = new Dictionary();
}
}
public enum AddressType
{
Physical,
Postal
}
public class Address
{
public virtual int Id { get; private set; }
public virtual IList Lines { get; set; }
public virtual string City { get; set; }
public virtual string Zip { get; set; }
}
我的映射:
public class EmployeeMap : ClassMap
{
public EmployeeMap()
{
CompositeId()
.KeyProperty(e => e.IdentityType)
.KeyProperty(e => e.IdentityValue);
// <snip other properties />
HasManyToMany(e => e.Addresses)
.Inverse();
}
}
生成以下 .hbm.xml 片段:
<map inverse="true" name="Addresses" table="EmployeeAddresses" mutable="true">
<key>
<column name="Employee_id" />
</key>
<index type="Domain.Entities.AddressType, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<column name="Key" />
</index>
<many-to-many class="Domain.Entities.Address, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<column name="Address_id" />
</many-to-many>
</map>
我喜欢生成的 .hbm.xml
<map inverse="true" name="Addresses" table="EmployeeAddresses" mutable="true">
<key>
<column name="IdentityType" />
<column name="IdentityValue" />
</key>
<index type="Domain.Entities.AddressType, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<column name="Key" />
</index>
<many-to-many class="Domain.Entities.Address, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<column name="Address_id" />
</many-to-many>
</map>
显然这会失败,因为我没有告诉它有一个复合 ID 可用于父密钥。但我找不到告诉它的方法。 .HasManyToMany
我应该如何映射它?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论