gpt4 book ai didi

c# - 使用表达式树通过单个属性网络比较对象 InvalidOperationException

转载 作者:太空宇宙 更新时间:2023-11-03 21:15:47 26 4
gpt4 key购买 nike

我正在尝试使用表达式树,因为根据描述,这似乎是最正确(性能最好、可配置)的方法。

我希望能够编写一个语句,从 existingItems 集合中获取与 incomingItem 的 propertyNameToCompareOn 值匹配的第一个项目。

我有一个具有以下签名和模拟代码体的方法...

DetectDifferences<T>(List<T> incomingItems, List<T> existingItems)
{
var propertyNameToCompareOn = GetThisValueFromAConfigFile(T.FullName());

//does this belong outside of the loop?
var leftParam = Expression.Parameter(typeof(T), "left");
var leftProperty = Expression.Property(leftParam, identField);
var rightParam = Expression.Parameter(typeof(T), "right");
var rightProperty = Expression.Property(rightParam, identField);
//this throws the error
var condition = Expression.Lambda<Func<T, bool>>(Expression.Equal(leftProperty, rightProperty));

foreach (var incomingItem in incomingItems) //could be a parallel or something else.
{
// also, where am I supposed to provide incomingItem to this statement?
var existingItem = existingItems.FirstOrDefault(expression/condition/idk);

// the statement for Foo would be something like
var existingFoos = exsistingItems.FirstOrDefault(f => f.Bar.Equals(incomingItem.Bar);

//if item does not exist, consider it new for persistence
//if item does exist, compare a configured list of the remaining properties between the
// objects. If they are all the same, report no changes. If any
// important property is different, capture the differences for
// persistence. (This is where precalculating hashes seems like the
// wrong approach due to expense.)
}
}

在上面标记的行中,我收到“为 lambda 声明提供的参数数量不正确”InvalidOperationException。在这一点上,我只是在网上胡扯,我真的不知道这想要什么。 VS 可以用一堆重载来填满我的屏幕,而 MSDN/SO 上的文章中没有一个示例有意义。

PS - 如果有帮助,我真的不想要 IComparer 或类似的实现。我可以通过反射(reflection)做到这一点。我确实需要尽可能快地完成它,但允许为多种类型调用它,因此选择了表达式树。

最佳答案

使用表达式树时,重要的是首先要了解在实际代码中您想要做什么。

我总是首先(在静态代码中)用真正的 C# lambda 语法写出结果表达式的样子。

根据您的描述,您声明的目标是您应该能够(动态地)查找类型为 T 的某些属性,以提供某种快速比较。如果 TTProperty 在编译时都已知,您将如何编写?我怀疑它看起来像这样:

Func<Foo, Foo, bool> comparer = (Foo first, Foo second) => 
first.FooProperty == second.FooProperty;

我们马上可以看出您的Expression 是错误的。你不需要一个输入 T,你需要两个!

您得到 InvalidOperationException 的原因也应该很明显。您从未向 lambda 表达式提供任何参数,仅提供正文。上面,'first' 和 'second' 是提供给 lambda 的参数。您还需要将它们提供给 Expression.Lambda() 调用。

var condition = Expression.Lambda<Func<T,T, bool>>(
Expression.Equal(leftProperty, rightProperty),
leftParam,
rightParam);

这只是使用了 Expression.Lambda(Expression, ParameterExpression[]) Expression.Lambda 的重载。每个 ParameterExpression 都是正文中使用的参数。就是这样。如果您想实际调用它,请不要忘记将您的表达式 .Compile() 放入委托(delegate)中。

当然这并不意味着你的技术一定很快。如果您使用花哨的表达式树来比较两个列表以及朴素的 O(n^2) 方法,那没关系。

关于c# - 使用表达式树通过单个属性网络比较对象 InvalidOperationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34425693/

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