示例#1
0
 /// <summary>
 /// Adds a column where the value is automatically created as a query parameter. The name of the query parameter
 /// will be the same as the name of the column.
 /// </summary>
 /// <param name="column">The name of the column.</param>
 /// <returns>The return object.</returns>
 /// <exception cref="InvalidQueryException"><paramref name="column"/> is not a valid column name.</exception>
 public IInsertODKUQuery AddAutoParam(string column)
 {
     return(_c.AddAutoParam(column));
 }
示例#2
0
 /// <summary>
 /// Adds a column where the value is automatically created as a query parameter. The name of the query parameter
 /// will be the same as the name of the column.
 /// </summary>
 /// <param name="column">The name of the column.</param>
 /// <returns>The return object.</returns>
 /// <exception cref="InvalidQueryException"><paramref name="column"/> is not a valid column name.</exception>
 public IUpdateQuery AddAutoParam(string column)
 {
     return(_c.AddAutoParam(column));
 }