我是NHibernate的新手。 我在我的hbm文件中使用以下属性元素......
<property name="CountryId" length="4" />
<property name="CountryForCustomer"
formula="(SELECT *
FROM SystemCountry
WHERE SystemCountry.CountryId = CountryId)" />
在这里,我试图从另一个表中的CountryId获取Country详细信息。
属性“CountryForCustomer”属于自定义类型“SystemCountry”。
但是公式中的这个查询无效。所以有人请帮我解决这个问题。
提前致谢....