gpt4 book ai didi

c# - 无法将 lambda 表达式转换为委托(delegate)类型

转载 作者:行者123 更新时间:2023-12-04 16:07:39 26 4
gpt4 key购买 nike

我有这样的方法:

public ICollection<T> GetEntitiesWithPredicate(Expression<Func<T, bool>> predicate)
{
// ...
}

我在另一个类中进行方法调用,例如
service.GetEntitiesWithPredicate(x => x.FoobarCollection.Where(y => y.Text.Contains(SearchText)));

但我总是收到这个错误:
Lambda expression cannot be converted to '<typename>' because '<typename>' is not a delegate type

我必须改变什么才能完成这项工作?

编辑:

我使用 Entity Framework 6,如果我使用 Any() 而不是 Where(),我总是只能得到 1 个结果...我想将表达式传递给我的 EF 实现:
    public ICollection<T> GetEntriesWithPredicate(Expression<Func<T, bool>> predicate)
{
using (var ctx = new DataContext())
{
return query.Where(predicate).ToList();
}
}

最佳答案

class Program
{
static void Main(string[] args)
{
var o = new Foo { };

var f = o.GetEntitiesWithPredicate(a => a.MyProperty.Where(b => b.MyProperty > 0).ToList().Count == 2); // f.MyProperty == 9 true
}
}

class Foo
{
public ICollection<T> GetEntitiesWithPredicate(Expression<Func<T, bool>> predicate)
{
var t = predicate.Compile();

var d = t.Invoke(new T { MyProperty = new List<Y> { new Y { MyProperty = 10 }, new Y { MyProperty = 10 } } });



if (d) return new List<T> { new T { MyProperty = new List<Y> { new Y { MyProperty = 9 } } } };

return null;
}
}

class T
{
public T() { }
public List<Y> MyProperty { get; set; }
}

class Y
{
public int MyProperty { get; set; }
}

关于c# - 无法将 lambda 表达式转换为委托(delegate)类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34721812/

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