LINQ表达式从Int到字符串的转换/Concat
本文关键字:转换 Concat 字符串 表达式 Int LINQ | 更新日期: 2023-09-27 18:24:51
我想将两个表达式合并为最终表达式
Expression<Func<T, string>>
所以我创建了表达式belwo代码只适用于字符串类型,如果我将memberExpression作为Int32或DateTime抛出异常
"System.Int32"类型的表达式不能用于方法"System.String Concat(System.String,System.String)"的"System.String"类型的参数
如果我将表达式转换为
var conversion = Expression.Convert(memberExpression, typeof (string));
geting在类型"System.Int32"answers"System.String"之间未定义强制运算符。
请帮我解决
代码
MethodInfo bodyContactMethod = typeof (string).GetMethod("Concat",new[] {typeof (string), typeof (string)});
ParameterExpression parameter = Expression.Parameter(typeof (T));
body = Expression.Call(bodyContactMethod, cons, memberExpression);
return Expression.Lambda<Func<T, string>>(body, parameter);
您可以尝试转换为对象,然后调用ToString(),而不是尝试转换为字符串,就像您在做:
var converted = member.ToString();
作为表达式,它看起来像这样:
var convertedExpression = Expression.Call(
Expression.Convert(memberExpression, typeof(object)),
typeof(object).GetMethod("ToString"));
可以进一步简化为:
var convertedExpression = Expression.Call(
memberExpression,
typeof(object).GetMethod("ToString"));
与其调用string.Concat(string, string)
,不如尝试调用string.Concat(object, object)
:
MethodInfo bodyContactMethod = typeof (string).GetMethod("Concat",
new[] { typeof(object), typeof(object) });
尽管已经有点晚了,但还是要详细介绍Richard Deeming的答案。
Expression.Call(
typeof(string).GetMethod("Concat", new[] { typeof(object), typeof(object) }),
Expression.Convert(cons, typeof(object)),
Expression.Convert(memberExpression, typeof(object))
);
这应该可以很好地工作,同时允许签名保持原样。