Example #1
0
 public async Task <int> CreateAndRunUpdateAsync(string table, string where, string[] fields, params object[] values)
 {
     return(await MySqlCommands.CreateUpdate(await ConnectAsync(), table, where, fields, values).ExecuteNonQueryAsync());
 }