gpt4 book ai didi

c# - lambda 表达式含义/修饰

转载 作者:行者123 更新时间:2023-11-30 12:30:54 27 4
gpt4 key购买 nike

我在使用 lambda 表达式时遇到问题,该表达式用于自定义过滤来自 DataGridView 的数据。

这是表达式:

private static Expression<Func<T, bool>> ExpressionLongEquals<T>(string Key, long Value)
{
var param = Expression.Parameter(typeof(T));
// create expression for param => param.TEntityNameId == PrimaryKey
var lambda = Expression.Lambda<Func<T, bool>>(
Expression.Equal(
Expression.Property(param, Key),
Expression.Constant(Value)),
param);
return lambda;
}

问题是当 Value 参数的类型为 long? 时,我遇到了这样的情况,这看起来是可以接受的,但在完成这段代码后,我得到一个错误没有为 Nullable1.System.Int64 和 System.Int64 定义方法 equal。我很难理解这种方法,不太确定上下文之外的其他人是否可以理解它,但是我要发布我的问题 - 首先,这到底是什么,我的意思是 - 我需要学习/阅读的内容为了能够使用像我发布的代码和第二个这样的代码。我很确定此方法适用于 long 值,并且仅当 long? 作为参数传递时才会出现问题,所以有什么方法可以修改它来解决这个问题吗?

long?values 的需要是最近的,这就是导致问题的原因,我通常这样做:

else if (property.PropertyType == typeof(long?))
{
long value = Convert.ToInt64(rule.Data);
selector = ExpressionLongEquals<T>(rule.Field, value);
}

但我仍然收到有关 equal not defined for Nullable1.System.Int64 and System.Int64 的错误。

最佳答案

使用这个...如果我是正确的,您必须将您的值转换为 long 类型吗?

private static Expression<Func<T, bool>> ExpressionLongEquals<T>(string Key, long Value)
{
var param = Expression.Parameter(typeof(T));
// create expression for param => param.TEntityNameId == PrimaryKey
var lambda = Expression.Lambda<Func<T, bool>>(
Expression.Equal(
Expression.Property(param, Key),
Expression.Constant(Value, typeof(long?)),
param);
return lambda;
}

关于c# - lambda 表达式含义/修饰,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15091415/

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