I have an
Expression<Func<T_ENTITY_A, object>> sortExpression
which I need to convert to a
Expression<Func<T_ENTITY_B, object>> sortExpression
Each property in T_ENTITY_A maps to another property in T_ENTITY_B, and I have a table which maps one property to another. How would you go about implementing this? I am assuming it will need to be done using reflection...