So I have a table like so:
=========================
ID | Col2 | col3 | col4 |
=========================
-> 21 | balh | blah | foo |
22 | balh | blah | foo |
I am making a object that can read the data from one row using the column name in an expression. Something like this:
myrow.getValue(col => col.Col2)
The problem I am having is at the moment is naming the object, I can't really find a name that describes what it does without being really long.
What would you call it?
EDIT Ok I'll add a few more details, I am working with a COM object which will only let me read one column at a time. So I am writing a wrapper which can fetch a row from a table(inside the COM object) using the ID, then let the user supply a column name using expression(details not important). The object goes off to the table and get the data for that row using the ID and column name.