将Func <t,bool>转换为字符串

时间:2018-11-01 11:53:06

标签: string lambda type-conversion

我需要将Func表达式转换为等效的字符串。例如,如果我有这个表达式:

Customers.Where(c => c.State == "AZ")

我需要能够将where方法中的表达式转换为:

"c => c.State == 'AZ'"

我需要将lambda中的表达式转换为等效的原始文本。

0 个答案:

没有答案