예제 #1
0
 public static SelectQuery.FromClause.Join LeftJoin(this ISqlTableSource table, string alias, params SelectQuery.FromClause.Join[] joins)
 {
     return(SelectQuery.LeftJoin(table, alias, joins));
 }
예제 #2
0
 public static SqlFromClause.Join LeftJoin(this ISqlTableSource table, params SqlFromClause.Join[] joins)
 {
     return(SelectQuery.LeftJoin(table, joins));
 }