Add user case test

This commit is contained in:
sunkaixuan 2023-12-03 03:25:42 +08:00
parent 10cc0a16f6
commit 0404ef39e9

View File

@ -60,6 +60,13 @@ namespace OrmTest
new JoinQueryInfos(JoinType.Left,x.Id==y.Id))
.ToList();
var list2 = db.Queryable<DeviceEntity2, DeviceBrandEntity2>((x, y) =>
x.Id == y.Id )
.Select(x=>new DeviceEntity2
{
Id=x.Id
})
.ToList();
}
/// <summary>
/// 仪器