标签: string lambda type-conversion
我需要将Func表达式转换为等效的字符串。例如,如果我有这个表达式:
Customers.Where(c => c.State == "AZ")
我需要能够将where方法中的表达式转换为:
"c => c.State == 'AZ'"
我需要将lambda中的表达式转换为等效的原始文本。