예제 #1
0
        public JoinClause AddJoin(JoinType join, Table toTable, string toColumnName, Comparison @operator, Table fromTable, string fromColumnName)
        {
            JoinClause NewJoin = new JoinClause(join, toTable, toColumnName, @operator, fromTable, fromColumnName);
            _joins.Add(NewJoin);

            return NewJoin;
        }
예제 #2
0
 public JoinClause AddJoin(JoinClause newJoin)
 {
     _joins.Add(newJoin);
     return newJoin;
 }