0
我在這種情況下我:
NHibernate的未找到=「忽略」和原始字段值
Table A
id
name
country
和國家
Table Country
country
name
的表中的字段國家2-數字ISO(US,PA,UY等)。 表A中的字段國家在表格國家中引用字段iso。 我在(A級和班級國家)nHibernate上創建了類,因爲我沒有設置所有的國家未找到=「忽略」。
Class A
string name;
Country country;
Class Country
string iso;
string name;
如果我想要得到的ISO代碼,我會用Y艙的.NET屬性,A.country.iso。 現在,如果我有一個ISO代碼不存在於表格國家,A.country.iso會發出異常,因爲國家對象爲空。但是表A的國家字段不爲空,我想要獲取它們的值。
我該怎麼做?