从表达式转换<func <tmodel,tproperty =“”>&gt;表达式<func <tmodel,bool =“”>&gt; </func <tmodel,> </func <tmodel,>

时间:2013-07-24 16:05:56

标签: c# asp.net-mvc generics expression

以下代码生成错误:

public static MvcHtmlString EditControlFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper,
    Expression<Func<TModel, TProperty>> expression)
{
    ModelMetadata metadata = GetModelMetaData(htmlHelper, expression);
    Type propertyType = GetPropertyType(metadata);

    if (propertyType.IsEnum)
    {
        return DropDownListForEnum(htmlHelper, expression);
    }
    else if (propertyType == typeof(bool))
    {
        return htmlHelper.CheckBoxFor(expression);
    }
    else
    {
        return htmlHelper.TextBoxFor(expression);
    }
}

编译时错误如下:

Error: cannot convert from 
'System.Linq.Expressions.Expression<System.Func<TModel,TProperty>>' 
to 'System.Linq.Expressions.Expression<System.Func<TModel,bool>>'.

看起来CheckBoxFor()需要一个类型为

的参数
Expression<Func<TModel, bool>>

1 个答案:

答案 0 :(得分:9)

由于propertyType == typeof(bool)测试,它应该已经是正确的 - 你只需要说服编译器你的意图是诚实的。在这种情况下,通过:

var typedExpression = (System.Linq.Expressions.Expression<System.Func<TModel,bool>>)(object)expression;
return htmlHelper.CheckBoxFor(typedExpression);