У меня проблема с привязкой логического типа данных к флажку в аннотациях данных MVC 2. Вот мой пример кода:
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?)
Подскажите, пожалуйста, как мне решить эту проблему?
Заранее спасибо.