public List <T> GetItem <T>(string tableName, string predicate = "") { var columns = new MySQLiteTableMap(typeof(T)).GetColumns(); var cursor = GetItem(tableName, columns, predicate); if (cursor == null || cursor.Count == 0) { return(null); } //TODO: Implement return(null); }
public void CreateTable(string tableName, MySQLiteTableMap tableMap) => CreateTable(tableName, tableMap.ToSql());