mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-23 20:43:46 +08:00
Add demo
This commit is contained in:
@@ -56,6 +56,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 ####");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user