예제 #1
0
 /// <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);
 }
예제 #2
0
 internal DeleteQuery(QueryBuilder builder, string table) : this(builder)
 {
     fromClause = new FromClause(table);
 }