Esempio n. 1
0
 /// <summary>
 /// Removes multiple columns from from the collection.
 /// </summary>
 /// <param name="columns">The names of the columns to remove.</param>
 /// <returns>The return object.</returns>
 /// <exception cref="InvalidQueryException"><paramref name="columns"/> contains one or more columns with
 /// invalid column name.</exception>
 public IInsertODKUQuery Remove(IEnumerable <string> columns)
 {
     return(_c.Remove(columns));
 }
Esempio n. 2
0
 /// <summary>
 /// Removes multiple columns from from the collection.
 /// </summary>
 /// <param name="columns">The names of the columns to remove.</param>
 /// <returns>The return object.</returns>
 /// <exception cref="InvalidQueryException"><paramref name="columns"/> contains one or more columns with
 /// invalid column name.</exception>
 public IUpdateQuery Remove(IEnumerable <string> columns)
 {
     return(_c.Remove(columns));
 }