Example #1
0
        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);
        }
Example #2
0
 public void CreateTable(string tableName, MySQLiteTableMap tableMap) => CreateTable(tableName, tableMap.ToSql());