update

28810
2020-01-07 00:34:41 +08:00
parent cbbc578518
commit fb0c7a7a8d
2 changed files with 6 additions and 2 deletions

@@ -73,8 +73,11 @@ class Topic {
```csharp
class Topic {
[Column(ServerTime = DateTimeKind.Utc)]
[Column(ServerTime = DateTimeKind.Utc, CanUpdate = false)]
public DateTime CreateTime { get; set; }
[Column(ServerTime = DateTimeKind.Utc)]
public DateTime UpdateTime { get; set; }
}
```

@@ -1,13 +1,14 @@
每个月一个版本号1.0/1.1/1.2,修复后 bug 会发布 1.0.1/1.0.2
## v1.1(预)
## v1.1(预)
- 修复 BaseRepository.UnitOfWork 延迟设置(即事务开启之后再设置)无效的 bug
- 优化 参考 Chloe 表达式针对变量的解析,提升了一倍性能;
- 修复 FreeSql.Generator 外键导航属性大写小 bug#177
- 优化 IsVersion 字段更新 version=ifnull(version,0)+1防止字段为 null 一直报错;
- 完善 [Column(ServerTime = Utc)] 特性,对 Update 时也能生效;
- 完善 [Column(MapType = typeof(byte[]))] 对 Guid/string 的映射支持;
## v1.0.1