mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
- 补充 ISelect`T1...T10 LeftJoin/InnerJoin/RightJoin 多参数方法;
This commit is contained in:
@ -341,7 +341,10 @@ namespace FreeSql.Tests
|
||||
[Fact]
|
||||
public void Test1()
|
||||
{
|
||||
var kfkfjdfg = g.oracle.Select<Templates>().Where(a => (DateTime.Now - a.EditTime).TotalMinutes > 100).ToSql();
|
||||
g.oracle.Select<Templates, TaskBuild>()
|
||||
.InnerJoin((a,b) => true)
|
||||
.Where((a,b) => (DateTime.Now - a.EditTime).TotalMinutes > 100)
|
||||
.ToSql();
|
||||
|
||||
|
||||
g.oracle.Aop.SyncStructureAfter += (s, e) =>
|
||||
|
Reference in New Issue
Block a user