mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update TDengine
This commit is contained in:
parent
866275ef9e
commit
182f6130b7
@ -138,6 +138,13 @@ namespace OrmTest
|
|||||||
xts=x.ts,
|
xts=x.ts,
|
||||||
yts=y.ts
|
yts=y.ts
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
//联表查询在分页
|
||||||
|
var list102 = db.Queryable<MyTable02, MyTable02>((x, y) => x.ts == y.ts)
|
||||||
|
.Select((x, y) => new
|
||||||
|
{
|
||||||
|
xts = x.ts,
|
||||||
|
yts = y.ts
|
||||||
|
}).ToPageList(1,2);
|
||||||
}
|
}
|
||||||
private static void UnitTest(SqlSugarClient db)
|
private static void UnitTest(SqlSugarClient db)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user