Skip to content

Releases: DotNetNext/SqlSugar

3.1.1.2

22 Oct 05:24

Choose a tag to compare

1.支持了 list.Contains 以前只支持array.contains
Where(it=>list.Contains(p))

2.解决了ado.net另类写法引起的错误

3.1.0.9

19 Oct 05:14

Choose a tag to compare

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

  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;
                }
            }
}

3.1.0.8

18 Oct 06:38

Choose a tag to compare

  1. Select() 拉姆达解析 异常处理 优化了错误提示

3.1.0.7

17 Oct 16:55

Choose a tag to compare

1.拉姆达解析,支持了属性中返回函数写法
public int id{ get{ return getId()}};
Where(it.id=>this.id)

2.指定列更新也支持了自动排除主键和自增列功能

3.1.0.5

17 Oct 14:19

Choose a tag to compare

没有变化,提升版本号和NUGET一致

3.0.01

15 Oct 13:59

Choose a tag to compare

1. 拉姆达 函数支持了 it.Contains("s"+p) 这种带有运算的参数
2.更新了错误提示语句

3.0

14 Oct 05:21

Choose a tag to compare

3.0 Pre-release
Pre-release
ok