mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add user case test
This commit is contained in:
parent
10cc0a16f6
commit
0404ef39e9
@ -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>
|
||||
/// 仪器
|
||||
|
Loading…
Reference in New Issue
Block a user