예제 #1
0
 public DataCollector(String tableName)
 {
     _tableName = tableName;
     _childs = new QueryNodeCollection(this);
 }
예제 #2
0
 public DataFilter(object filterPredicate)
 {
     FilterPredicate = filterPredicate;
     _childs = new QueryNodeCollection(this);
 }
예제 #3
0
 public DataConnector(ConnectorType type, bool allTag)
 {
     _type = type;
     _allTag = allTag;
     _childs = new QueryNodeCollection(this);
 }
예제 #4
0
 public UnionJoin()
     : base()
 {
     _childs = new QueryNodeCollection(this);
 }
예제 #5
0
 public DataSelector(bool distinct, Column[] columns)
 {
     _distinct = distinct;
     _targets = columns;
     _childs = new QueryNodeCollection(this);
     TopRows = -1;
 }
예제 #6
0
 public DataSorter(Column[] columns)
 {
     _columns = columns;
     _childs = new QueryNodeCollection(this);           
 }
예제 #7
0
 public TextDataAccessor()
 {
     _childs = new QueryNodeCollection(this);
 }