mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-06 05:37:58 +08:00
20 lines
526 B
C#
20 lines
526 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OrmTest
|
|||
|
{
|
|||
|
internal class UnitOneToOneNAny
|
|||
|
{
|
|||
|
public static void Init()
|
|||
|
{
|
|||
|
var db = NewUnitTest.Db;
|
|||
|
db.CodeFirst.InitTables<EmpLicenseLogOff, EmpInformation, EmpDepartmentJob,EmpLicense>();
|
|||
|
db.Queryable<EmpLicenseLogOff>()
|
|||
|
.Where(it => it.EmpLicense.EmpInformation.EmpDepartmentJobs.Any(z => z.DepId == 1))
|
|||
|
.ToList();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|