我正在将Fluent Nhibernate 1.0与Sharp Architecture 1.0一起使用

目前,我正在尝试将对ZipCode类的引用映射。我正在映射的当前类具有一个ZipCode列,但是zipcode类比基本zipcode所需的类要广泛得多,因此其背后的原因。 (基本上,Zipcode类包含lat。和long。UTC时区等,所有都是只读的)

这是我的 map

            References<ZipCode>(x => x.ZipCodeRadius, "ZipCode")
            .Column("ZipCode")
            .Cascade.None()
            //.ForeignKey("FK_ZipCode")
            .ReadOnly();

当我运行测试时,出现此错误。



我尝试添加ForeignKey和Constrained lambda,但它们似乎未添加任何内容。

邮政编码表具有一个ID,但是我不想映射到该ID,而是想映射到该邮政编码表的zipcode列,再返回到地址表的zipcode列。

如果有人对如何解决这个问题有任何想法,我将不胜感激。

请注意,就像我在上面所做的那样,我不能简单地仅引用邮政编码表并将属性放在地址上,因为邮政编码表是只读的。

这是ZipCodeRadius类。
[NotNullNotEmpty, Length(Max = 5)]
public virtual string ZipCodeName { get; set; }
[NotNullNotEmpty, Length(Max = 1)]
public virtual string ZipType { get; set; }
[NotNullNotEmpty, Length(Max = 10)]
public virtual string TimeZone{ get; set; }

public virtual int UTC  { get; set; }

public virtual double Latitude { get; set; }
public virtual double Longitude { get; set; }

public virtual County County { get; set; }

这是地址类
protected Address() { }

public Address(User UpdateUser)
    : base(UpdateUser)
{
    this.UpdateUserId = UpdateUser.Id.ToString();
}

//[DomainSignature, NotNullNotEmpty]
//public virtual string Title { get; set; }

[NotNullNotEmpty, Length(Max = 50)]
public virtual string AddressLine1 { get; set; }

[Length(Max = 50)]
public virtual string AddressLine2 { get; set; }

[NotNullNotEmpty, Length(Max = 20)]
public virtual string City { get; set; }

public virtual StateOrProvince State { get; set; }

[NotNullNotEmpty, Length(Max = 10)]
public virtual string ZipCode { get; set;}

[Length(Max = 10)]
public virtual string ZipPlus { get; set; }

public virtual bool IsVerified { get; set; }

public virtual Country Country { get; set; }

public virtual ZipCode ZipCodeRadius { get; set; }

这是ZipCode表映射
Table("ZipCode");

Id(x => x.Id, "ZipCodeID");

Map(x => x.ZipCodeName, "ZipCode").AsVarChar(5);
Map(x => x.ZipType, "ZipType").AsVarChar(1);
Map(x => x.TimeZone, "TimeZone").AsVarChar(10);
Map(x => x.UTC, "UTC");
Map(x => x.Latitude, "Latitude");
Map(x => x.Longitude, "Longitude");

ReadOnly();
Cache.ReadOnly();

最佳答案

显然,HasOne是执行此操作的正确方法。...尽管我以为自己尝试过,但是却缺少PropertyRef...。

            HasOne<ZipCode>(x => x.ZipCodeRadius)
            .PropertyRef(x => x.ZipCodeName)
            .ForeignKey("ZipCode");

关于nhibernate - 流利的NHibernate将引用映射到不是ID列的列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2066515/

10-11 06:25