Error : cannot implicitly convert type \'bool?\' to \'bool\'. An explicit conversion exists (are you missing a cast?)
Code :
cast your nullable value to value type
[HttpPost] public ActionResult Index(bool? checkOffAge) { if (checkOffAge != null) { model.CheckOffAge =(bool)checkOffAge; } }