コード例 #1
0
 internal JoinSelectQuery(JoinQuery query, string table, params DataColumn[] columns)
 {
     _query   = query;
     _table   = table;
     _select  = columns;
     _where   = null;
     _groupBy = null;
     _prefix  = false;
     _default = string.Concat(table, ".*");
 }
コード例 #2
0
 public JoinWhereQuery Where(DataWhereQueue where)
 {
     _where = new JoinWhereQuery(this, where);
     return(_where);
 }