示例#1
0
 public static JoinedTables Inner(ITableExpression table, ITableExpression withTable, ILogicalCondition on, string alias)
 {
     return new JoinedTables() {Table = table, JoinedWith = withTable, On = on, Alias = alias, JoinType = JoinType.INNERJOIN};
 }
示例#2
0
 public static JoinedTables Left(ITableExpression table, ITableExpression withTable, ILogicalCondition on)
 {
     return new JoinedTables() {Table = table, JoinedWith = withTable, On = on, JoinType = JoinType.LEFTJOIN};
 }
示例#3
0
 public static ILogicalCondition Not(ILogicalCondition condition)
 {
     return new LogicalNot() {Condition = condition};
 }