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