I am used to JavaScript where you can access an object's property using a string like so:
myObject[propertyNameString]
How can I do this for my query of an entity database doing something similar to this:
Dim query = From q In db[tableName]
Where q[columnName] = myValue
Select z