我有一个示例数据类
public class Data { public int TestInt { get; set; } public bool TestBool { get; set; } public string TestString { get; set; } public Data() { TestInt = 10; TestBool = true; TestString = "test"; } }
并且是一种扩展方法
public static void Method<T>(this T item,params Expression<Func<T,object>>[] properties) { /* Some stuff */ }
我这样用
Data data = new Data(); data.Method(x => x.TestInt,x => x.TestBool,x => x.TestString);
properties[0] = x => Convert(x.TestId); properties[1] = x => Convert(x.TestBool); properties[2] = x => x.TestString;
如您所见,TestString部分未更改.我尝试将我的属性更改为params Expression< Func< T,bool>> []和params Expression< Func< T,int>> []并且只传递相应的参数,它工作正常.我理解问题来自转换为对象,但我无法弄明白.
解决方法
如果要分析原始表达式,一种可能的方法是手动删除转换表达式.
在Method中,您可能会获得UnaryExpression
with NodeType
= Convert
.如果是这样,只需检查此表达式的Operand属性.