TShockAPI.DB.SqlTableCreator.DeleteRow C# (CSharp) Method

DeleteRow() public method

public DeleteRow ( string table, List wheres ) : void
table string
wheres List
return void
        public void DeleteRow(string table, List<SqlValue> wheres)
        {
            database.Query(creator.DeleteRow(table, wheres));
        }