String value comes from a cell from database.
For example:
"model.Number == dtoModel.Number"
I want to use this string in a if condition like this;
if(model.Number == dtoModel.Number)
{
//some logic
}
'model' and 'dtoModel' are objects of some classes.
Can anyone tell me how to do this?
I haved tried Expression type operators but i cant see any result in stackoverflow site.