Skip to content

3.1.0.9

Compare
Choose a tag to compare
@DotNetNext DotNetNext released this 19 Oct 05:14
· 11656 commits to master since this release

解决了:过滤更新列时,下面这种写法会报错

  db.DisableUpdateColumns= new string[] {"get"}; //不更新 get列
  db.update(student);
public Student class{     '
            public int name{ get; set; }

            private   Student _get;
            public virtual Student get
            {
                get {
                    if (_get==null)
                        _get = DBManager.xxxx(classId);
                    return _get;
                }
            }
}