mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Add unit test
This commit is contained in:
parent
b382d5ca4b
commit
50f2a0a46e
@ -13,7 +13,15 @@ namespace OrmTest
|
||||
db.CodeFirst.InitTables<EmpLicenseLogOff, EmpInformation, EmpDepartmentJob,EmpLicense>();
|
||||
db.Queryable<EmpLicenseLogOff>()
|
||||
.Where(it => it.EmpLicense.EmpInformation.EmpDepartmentJobs.Any())
|
||||
.ToList();
|
||||
.ToList();
|
||||
|
||||
var sql = db.Queryable<Order>()
|
||||
.Where(b =>
|
||||
$"{b.Name}^{b.Name}^{b.Name}^{b.Id}^{1} ".Contains("a")).ToSqlString();
|
||||
if (!sql.Contains("'[Name]^[Name]^[Name]^[Id]^ 1 ' like"))
|
||||
{
|
||||
throw new Exception("unit error");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user