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; }
public Mock_NovaQuery(object returnVal, INovaQuery table, string action) : base(table, action) { _returnVal = returnVal; _innerQuery = table; }
public INovaTable Table(INovaQuery table, string identity = null) { return new NovaTable(this, table, identity); }
public INovaQuery Select(INovaQuery table) { return Table(table).Insert(); }
public NovaTable(NovaDb db, INovaQuery table, string identity = null) { _db = db; _tableQuery = table; _identity = identity; }
public INovaQuery Select(INovaQuery table) { _query = new Mock_NovaQuery(_returlVal, table, "SELECT"); return _query; }
public INovaQuery Select(INovaQuery table) { _query = new Mock_NovaQuery(_returlVal, table, "SELECT"); return(_query); }
protected NovaQuery(INovaQuery table, string action) { _action = action; _tableName = table.BuildString(); _queryTable = true; }
public INovaQuery Select(INovaQuery table) { return(Table(table).Insert()); }
public INovaTable Table(INovaQuery table, string identity = null) { return(new NovaTable(this, table, identity)); }