diff --git a/Src/Asp.Net/SqlServerTest/Demo/Democ_GobalFilter.cs b/Src/Asp.Net/SqlServerTest/Demo/Democ_GobalFilter.cs index 9ee6f5fc0..12606406b 100644 --- a/Src/Asp.Net/SqlServerTest/Demo/Democ_GobalFilter.cs +++ b/Src/Asp.Net/SqlServerTest/Demo/Democ_GobalFilter.cs @@ -83,6 +83,9 @@ namespace OrmTest db.Queryable().LeftJoin((x, y) => x.Id == y.Id).Where(x=>x.Id==1).ToList(); db.Queryable().LeftJoin((x, y) => x.Id == y.Id).ToList(); db.Queryable().LeftJoin((x, y) => x.Id == y.Id).ToList(); + db.Queryable() + .LeftJoin((x, y) => x.Id == y.Id) + .LeftJoin((x, y,z) => x.Id == y.Id).ToList(); }