mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 21:56:03 +08:00
Add demo
This commit is contained in:
parent
4ecbd45b85
commit
6efbd0f1b8
@ -53,6 +53,8 @@ namespace OrmTest
|
||||
{
|
||||
Id = SqlFunc.Subqueryable<CodeFirstNoUpper>().Where(z => z.Id == it.Id).Select(z => z.Id)
|
||||
}).ToList();
|
||||
db.Queryable<CodeFirstNoUpper>().LeftJoin<CodeFirstNoUpper>((s, y) => s.Id == y.Id)
|
||||
.Select((s, y) => y).ToList();
|
||||
Console.WriteLine("#### CodeFirst end ####");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user