Example #1
0
 public static IQuery Insert(this ITable table, object obj, bool insertIgnore = false)
 {
     return(table.BulkInsert(new[] { obj }, insertIgnore));
 }
Example #2
0
 public static IQuery Insert(this ITable table, Dictionary <string, object?> obj, bool insertIgnore = false)
 {
     return(table.BulkInsert(new[] { obj }, insertIgnore));
 }