Skip to content

Commit

Permalink
prepare 5.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliang-wt committed Dec 8, 2021
1 parent 29c4335 commit aa81c76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# 更新日志
## v5.x.x

##5.7.1 (2021-12-8)
* **修改:** 还原了数据权限的默认逻辑
* **修改:** 修复了批量修改时将某些字段清空的bug
* **修改:** 修复了TreeContainer联动列表的bug
* **修改:** 修复了更新时因字段大小写引发的验证失败的bug

##5.7.0 (2021-12-2)
* **修改:** 添加了BoolStringConverter,用于将字符串序列化为布尔值
* **修改:** 修复了导入时唯一性条件的判断
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public override IOrderedQueryable<School_View> GetSearchQuery()
.CheckContain(Searcher.SchoolName, x => x.SchoolName)
.CheckEqual(Searcher.SchoolType, x => x.SchoolType)
.CheckEqual(Searcher.CityId, x=>x.CityId)
//.DPWhere(Wtm, x=>x.ID)
.DPWhere(Wtm, x=>x.ID)
.Select(x => new School_View
{
ID = x.ID,
Expand Down
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>5.7.0</VersionPrefix>
<VersionPrefix>5.7.1</VersionPrefix>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit aa81c76

Please sign in to comment.