从Int到string的LINQ表达式转换/ Concat

时间:2013-07-25 15:27:42

标签: c# asp.net linq c#-4.0 asp.net-mvc-4

我想Concat两个表达式用于最终表达式

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));

获取No Coercion运算符是在类型'System.Int32'和'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);

4 个答案:

答案 0 :(得分:7)

您可以尝试转换为对象然后调用ToString(),而不是尝试强制转换为字符串,就好像您正在执行:

var converted = member.ToString();

作为表达式,它看起来像这样:

var convertedExpression = Expression.Call(
                     Expression.Convert(memberExpression, typeof(object)),
                     typeof(object).GetMethod("ToString"));

答案 1 :(得分:1)

可以进一步简化为:

var convertedExpression = Expression.Call(
                     memberExpression,
                     typeof(object).GetMethod("ToString"));

答案 2 :(得分:0)

您可以尝试拨打string.Concat(string, string)

,而不是致电string.Concat(object, object)
MethodInfo bodyContactMethod = typeof (string).GetMethod("Concat", 
   new[] { typeof(object), typeof(object) });

答案 3 :(得分:0)

为了扩展Richard Deeming的答案,尽管有点晚了。

Expression.Call(
    typeof(string).GetMethod("Concat", new[] { typeof(object), typeof(object) }),
    Expression.Convert(cons, typeof(object)),
    Expression.Convert(memberExpression, typeof(object))
);

这应该可以正常工作,同时允许签名留在你拥有它。