程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> nhibernate 中 lazy="no-proxy" 時的問題,nhibernateno-proxy

nhibernate 中 lazy="no-proxy" 時的問題,nhibernateno-proxy

編輯:關於.NET

nhibernate 中 lazy="no-proxy" 時的問題,nhibernateno-proxy


在 nhibernate,如果將實體的一個關聯屬性配置為 lazy="no-proxy",那麼,從其他屬性計算出來的屬性不能正確更新。例如,將以下代碼中 Foo.Bar 配置為 lazy="no-proxy" ,屬性 c 不能正確持久化。

public class Foo
{
    public virtual Bar Bar { get; set; }
    public virtual int a { get; set; }
    public virtual int b { get; set; }
    public virtual int c
    {
        get
        {
            return a + b
        }
        set { }
    }
}

public class Bar
{
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved