/// <summary>
 ///  Inserts a record into the specified "table".
 ///  </summary><param name="tableName">Name of the table.</param><param name="data">The values to insert.</param><returns>If possible, return the newly inserted row, including any automatically-set values such as primary keys or timestamps.</returns>
 internal override IDictionary <string, object> Insert(string tableName, IDictionary <string, object> data, bool resultRequired)
 {
     return(_adapter.Insert(tableName, data, resultRequired));
 }
Exemplo n.º 2
0
 /// <summary>
 ///  Inserts a record into the specified "table".
 ///  </summary><param name="tableName">Name of the table.</param><param name="data">The values to insert.</param><returns>If possible, return the newly inserted row, including any automatically-set values such as primary keys or timestamps.</returns>
 public override IDictionary <string, object> Insert(string tableName, IDictionary <string, object> data)
 {
     return(_adapter.Insert(tableName, data));
 }