Esempio n. 1
0
 public NovaQuery(INovaDb db, NovaTable table, INovaQuery tableQuery, string action, string identity = null)
 {
     _db         = db;
     _table      = table;
     _tableName  = tableQuery.BuildString();
     _queryTable = true;
     _action     = action;
     _identity   = identity;
 }
Esempio n. 2
0
 public Mock_NovaQuery(object returnVal, INovaQuery table, string action) :
     base(table, action)
 {
     _returnVal  = returnVal;
     _innerQuery = table;
 }
Esempio n. 3
0
 public Mock_NovaQuery(object returnVal, INovaQuery table, string action)
     : base(table, action)
 {
     _returnVal = returnVal;
     _innerQuery = table;
 }
Esempio n. 4
0
 public INovaTable Table(INovaQuery table, string identity = null)
 {
     return new NovaTable(this, table, identity);
 }
Esempio n. 5
0
 public INovaQuery Select(INovaQuery table)
 {
     return Table(table).Insert();
 }
Esempio n. 6
0
 public NovaTable(NovaDb db, INovaQuery table, string identity = null)
 {
     _db = db;
     _tableQuery = table;
     _identity = identity;
 }
Esempio n. 7
0
 public INovaQuery Select(INovaQuery table)
 {
     _query = new Mock_NovaQuery(_returlVal, table, "SELECT");
     return _query;
 }
Esempio n. 8
0
 public INovaQuery Select(INovaQuery table)
 {
     _query = new Mock_NovaQuery(_returlVal, table, "SELECT");
     return(_query);
 }
Esempio n. 9
0
 public NovaTable(NovaDb db, INovaQuery table, string identity = null)
 {
     _db         = db;
     _tableQuery = table;
     _identity   = identity;
 }
Esempio n. 10
0
 protected NovaQuery(INovaQuery table, string action)
 {
     _action     = action;
     _tableName  = table.BuildString();
     _queryTable = true;
 }
Esempio n. 11
0
 public INovaQuery Select(INovaQuery table)
 {
     return(Table(table).Insert());
 }
Esempio n. 12
0
 public INovaTable Table(INovaQuery table, string identity = null)
 {
     return(new NovaTable(this, table, identity));
 }