- 补充 ISelect`T1...T10 LeftJoin/InnerJoin/RightJoin 多参数方法;

This commit is contained in:
28810
2019-08-06 10:32:36 +08:00
parent 4213761c62
commit 6c0bdc0e9e
19 changed files with 229 additions and 1 deletions

View File

@ -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) =>