У меня есть проект C # MVC3, и у меня возникают проблемы с реализацией HTML.CheckBoxFor.Я получаю сообщение об ошибке ниже
Cannot implicitly convert type 'string' to 'bool'
Вот код:
@{
List<Domain.LookupCostReductions> costReductions = ViewBag.CostReductions;
foreach (Domain.LookupCostReductions cr in costReductions)
{
@: <td style="border:0 ;vertical-align: top; ">
@Html.CheckBoxFor(x => x.CostReduction, cr.Description)
@cr.Description
@:</td>
}
}
Есть идеи?