mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 优化 单表查询 ExpressionTree 性能;
This commit is contained in:
@ -51,6 +51,14 @@ namespace FreeSql.Tests.Oracle
|
||||
item2 = repo.Get(item1.Id);
|
||||
|
||||
Assert.Equal(item1.CreatorId, item2.CreatorId);
|
||||
|
||||
fsql.Aop.AuditDataReader -= fsql.Aop.AuditDataReaderHandler;
|
||||
|
||||
item1 = new TS_SL361 { CreatorId = "" };
|
||||
repo.Insert(item1);
|
||||
item2 = repo.Get(item1.Id);
|
||||
|
||||
Assert.Null(item2.CreatorId);
|
||||
}
|
||||
}
|
||||
class TS_SNTE
|
||||
|
Reference in New Issue
Block a user