Is it possible to query a table with simple.data that has its table name passed in from somewhere else.
for example:
string tableToUse = "MyTable";
var test = db.tableToUse.All();
Is it possible to query a table with simple.data that has its table name passed in from somewhere else.
for example:
string tableToUse = "MyTable";
var test = db.tableToUse.All();
Yes, you can use a string indexer for object names instead of dynamic properties:
That works for column names too, so you can do this: