/// <summary> /// Add tables to the FROM clause of this SELECT query. /// </summary> /// <param name="tables"></param> /// <returns></returns> public SelectQuery From(params string[] tables) { fromClause += new FromClause(tables); return(this); }
internal DeleteQuery(QueryBuilder builder, string table) : this(builder) { fromClause = new FromClause(table); }