原文:Can I parameterize the property name of a PropertyExpression using LINQ Expressions?
Supposing I have the following LambdaExpression: var itemParam = Expression.Parameter(typeof(Thing), "thing"); var someValue = "ABCXYZ123"; // value to compare LambdaExpression lex = Expression....