Пример #1
0
 /// <summary>
 /// Adds a column name and value pair to the collection. If the <see cref="column"/> already exists,
 /// it will be changed to use the new <see cref="value"/>.
 /// </summary>
 /// <param name="column">The name of the column.</param>
 /// <param name="value">The value for the <paramref name="column"/>.</param>
 /// <returns>The return object.</returns>
 /// <exception cref="InvalidQueryException"><paramref name="column"/> is not a valid column name.</exception>
 public IInsertODKUQuery Add(string column, string value)
 {
     return(_c.Add(column, value));
 }
Пример #2
0
 /// <summary>
 /// Adds a column name and value pair to the collection. If the <see cref="column"/> already exists,
 /// it will be changed to use the new <see cref="value"/>.
 /// </summary>
 /// <param name="column">The name of the column.</param>
 /// <param name="value">The value for the <paramref name="column"/>.</param>
 /// <returns>The return object.</returns>
 /// <exception cref="InvalidQueryException"><paramref name="column"/> is not a valid column name.</exception>
 public IUpdateQuery Add(string column, string value)
 {
     return(_c.Add(column, value));
 }