Add unit test

This commit is contained in:
sunkaixuan 2023-07-11 12:48:48 +08:00
parent b382d5ca4b
commit 50f2a0a46e

View File

@ -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");
}
}
}
}