在我的项目中,我有这个映射:
public virtual string LicensePlate { get; set; }
public VehicleMap()
{
Table("VEHICLE");
Id(x => x.LicensePlate, "LICENSE_PLATE");
...
}
当我尝试运行应用程序时,会生成一个 MappingException,指定:
Could not determine type for: nononono.Vehicle, nononono.DataAccess, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null, for columns: NHibernate.Mapping.Column(LICENSE_PLATE)
有人可以指出我做错了什么吗?
我试过设置Id
to .NotNullable
,.GeneratedBy.Assigned()
但没有任何帮助。