Exemplo n.º 1
0
 public WhereQuery(SimpleTable table) : base(table)
 {
     valCount = 0;
     IsEmpty  = true;
 }
Exemplo n.º 2
0
 public QueryLine(SimpleTable table)
 {
     IsEmpty = true;
     Table   = table;
     Query   = string.Empty;
 }
Exemplo n.º 3
0
 protected Query(SimpleTable table) : base(table)
 {
 }
Exemplo n.º 4
0
 public ColumnQuery(SimpleTable table) : base(table)
 {
     columns = new List <Column>();
 }