在我的應用程序中,我需要保存從WCF服務收到的NHibernate實體。保存從WCF服務收到的實體
目前我爲此使用會話SaveOrUpdate方法。
通常我們不需要編輯引用屬性,所以從客戶端我收到對象,它有空集合。但我不希望這個空集合反映在數據庫中。
實施例:
public class Product
{
public virtual string Name {get;set;}
public virtual IList<Stores> Stores {get;set;} <--- Stores is empty, but should not be cleared in databse.
}
謝謝, 奧克薩娜。
請問您能否詳細解釋一下您的問題? – 2009-10-03 08:35:06