gpt4 book ai didi

c# - Integer 包含 linq c# 但使用 using 表达式

转载 作者:太空狗 更新时间:2023-10-30 01:13:00 25 4
gpt4 key购买 nike

我想使用 linq 表达式为我的存储库创建一个动态过滤器,我有其他过滤器,但我不知道如何使用表达式创建下一个过滤器:(条件取自 here)

var result = _studentRepotory.GetAll().Where(s => 
SqlFunctions.StringConvert((double)s.Id).Contains("91")).ToList();

我有一个接收属性值、propertyName 和过滤器运算符类型(枚举)的方法:

public static class Helper {
public static Expression<Func<T, bool>> GetExpression<T>(object value, string propertyName, FilterOperatorType FilterType)
{
var parameter = Expression.Parameter(typeof(T));
var property = ExpressionUtils.GetPropertyChild(parameter, propertyName);
var constValue = Expression.Constant(value);

BinaryExpression expresion = null;
switch (FilterType)
{
case FilterOperatorType.Equal:
expresion = Expression.Equal(property, constValue);
break;
case FilterOperatorType.Greater:
expresion = Expression.GreaterThan(property, constValue);
break;
case FilterOperatorType.Less:
expresion = Expression.LessThan(property, constValue);
break;
case FilterOperatorType.GreaterOrEqual:
expresion = Expression.GreaterThanOrEqual(property, constValue);
break;
case FilterOperatorType.LessOrEqual:
expresion = Expression.LessThanOrEqual(property, constValue);
break;
}

var lambda = Expression.Lambda<Func<T, bool>>(expresion, parameter);
return lambda;
}
}

所以,我想添加一个新的运算符类型 Contains ,它将评估一个整数是否包含一些数字,在我做的第一段代码中,但我想用 linq 表达式来做使用泛型。

最后我会:

Expression<Func<Student, bool>> where = Helper.GetExpression<Student>("91", "Id",  FilterOperatorType.Contains);
var result = _studentRepotory.GetAll().Where(where).ToList();

当 Id 包含数字 91 时,查询应返回所有学生。

请帮帮我,如果你明白了告诉我。

最佳答案

我现在凌晨 2:00 还在研究这个,那个时候大脑工作得更好嘿嘿嘿,这里是创建表达式的解决方案:

object value = "91";

var parameter = Expression.Parameter(typeof(Student));
var property = ExpressionUtils.GetPropertyChild(parameter, "Id");
var constValue = Expression.Constant(value);

var expressionConvert = Expression.Convert(property, typeof(double?));

var methodStringConvert = typeof(SqlFunctions).GetMethod("StringConvert",
BindingFlags.Public | BindingFlags.Static, null,
CallingConventions.Any,
new Type[] { typeof(double?) },
null);

var methodContains = typeof(string).GetMethod("Contains",
BindingFlags.Public | BindingFlags.Instance,
null, CallingConventions.Any,
new Type[] { typeof(String) }, null);

var expresionStringConvert = Expression.Call(methodStringConvert, expressionConvert);
var expresionContains = Expression.Call(expresionStringConvert, methodContains, constValue);
var lambdaContains = Expression.Lambda<Func<Student, bool>>(expresionContains, parameter);

现在您可以在 studentRepository 的 Where 方法中使用 lambdaContains

关于c# - Integer 包含 linq c# 但使用 using 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53331782/

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