mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add unit test case
This commit is contained in:
parent
c0503054e8
commit
c26f41bfd3
@ -29,6 +29,12 @@ namespace OrmTest
|
||||
var list3 = db.Queryable<UnitPerson011>()
|
||||
.Includes(x => x.adds)
|
||||
.Where(x=>x.adds.Id==1).ToList();
|
||||
|
||||
if (db.Queryable<UnitPerson011>()
|
||||
.Where(x => x.adds.Id == 1).ToSqlString() != "SELECT [Id],[Name],[AddressId],[AddressId2] FROM [UnitPerson0x1x1] [x] WHERE ( (SELECT TOP 1 Id FROM [UnitAddress0x1x1] WHERE [x].[AddressId]=[Id] AND [x].[AddressId]=[Id] ) = 1 )")
|
||||
{
|
||||
throw new Exception("unit error");
|
||||
}
|
||||
}
|
||||
[SqlSugar.SugarTable("UnitPerson0x1x1")]
|
||||
public class UnitPerson011
|
||||
|
Loading…
Reference in New Issue
Block a user