mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add user test case
This commit is contained in:
parent
c26f41bfd3
commit
6a644cc7dd
@ -36,8 +36,13 @@ namespace OrmTest
|
||||
var list3 = db.Queryable<UnitAddress011>()
|
||||
.Includes(it=>it.Persons)
|
||||
.Where(it => it.Persons.Any())
|
||||
.ToList();
|
||||
|
||||
.ToList();
|
||||
var sql = db.Queryable<UnitAddress011>().Where(it => it.Persons.Any()).ToSqlString();
|
||||
if (sql.Trim() != "SELECT [Id],[Street] FROM [Unitadfadfssaaress0x1x1] [it] WHERE ( EXISTS (SELECT * FROM [Unitsdd0x1ddx1] WHERE [it].[Id]=[AddressId] AND [it].[Id]=[AddressId] ) )")
|
||||
{
|
||||
throw new Exception("unit error");
|
||||
}
|
||||
|
||||
}
|
||||
[SqlSugar.SugarTable("Unitsdd0x1ddx1")]
|
||||
public class UnitPerson011
|
||||
|
Loading…
Reference in New Issue
Block a user