mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Add demo
This commit is contained in:
parent
b43dc6f160
commit
6fd2044bec
@ -60,6 +60,11 @@ namespace OrmTest
|
||||
names = SqlFunc.Subqueryable<Order>().Where(z=>z.Id==it.Id).SelectStringJoin(z => z.Name, ",")
|
||||
})
|
||||
.ToList();
|
||||
var test08 = db.Queryable<Order>().Select(it => new
|
||||
{
|
||||
names = $"as{it.Id}fd{it.Id}a"
|
||||
})
|
||||
.ToList();
|
||||
Console.WriteLine("#### Examples End ####");
|
||||
Console.WriteLine("#### Examples End ####");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user