Exemplo n.º 1
0
 public static bool Insert(string tableName, Dictionary <string, string> dataset)
 {
     return(ExecuteQuery(QueryMaker.InsertQuery(tableName, dataset)));
 }
Exemplo n.º 2
0
 public static bool Insert <T>(T _Object, string schemaName = null, string tableName = null)
 {
     return(ExecuteQuery(QueryMaker.InsertQuery(_Object, schemaName, tableName)));
 }