lets say i have :
anything.where(x=>x.age == int.parse(txtage.text));
now i know that int.parse(txtage.text)
is an expression of type ExpressionType.Convert
now i wanna know how to create an expression of type ExpressionType.Convert manually (programatically)
why ?
because im passing expressions between layers and changing the type of it , i managed make a visit to every expression and rebuild it except for
case ExpressionType.Convert:
any idea ? thanks in advance.