我有問題,結合數據類型布爾在MVC 2數據註解複選框結合位數據類型 這裏是我的代碼示例:如何在SQL中的布爾/檢查框ASP.NET MVC 2 DataAnnotations
label>
Is Hot
</label>
<%=Html.CheckBoxFor(model => model.isHot, new {@class="input" })%>
它總是在(model => model.isHot)下面提示此錯誤消息。
Cannot convert lambda expression to delegate type 'System.Func<Framework.Models.customer,bool>' because some of the return types in the block are not implicitly convertible to the delegate return type
Cannot implicitly convert type 'bool?' to 'bool'. An explicit conversion exists (are you missing a cast?)
請問我該如何解決這個問題?
在此先感謝。
isHot屬性的類型是什麼? – 2010-05-07 07:25:54