Returns a dictionary with all entries from a table
public OrderedDictionary<string, DatabaseEntry> GetEntriesFromTable(string _fromTable)
public DataboxObject database;
public string tableName;
var _table = database.GetEntriesFromTable(tableName);
Debug.Log(_table.Count + " Entries in " + tableName);
// Iterate through all entries
foreach(var entry in _table.Keys)
{
}