gpt4 book ai didi

c# - 如何将linq选择器转换为预测器

转载 作者:太空宇宙 更新时间:2023-11-03 19:33:22 27 4
gpt4 key购买 nike

我有一个 lambda 选择器,比方说 Func<T, TResult> .是否可以使用 Func<T, bool> 将其转换为预测器( TResult )对象作为引用?

例如转换

x => x.Name

进入

x => x.Name == customerName

最佳答案

是这样的吗?

static Func<TInput, bool> CreatePredicate<TInput, TResult>(Func<TInput, TResult> selector, TResult comparisonValue)
{
return tInput => selector(tInput).Equals(comparisonValue);
}

用法:

Func<Foo, bool> myPredicate = CreatePredicate(x => x.Name, customerName);

您能告诉我们更多关于您为什么要这样做的原因吗?

关于c# - 如何将linq选择器转换为预测器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3698450/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com