I have a custom HtmlHelper extension, which renders controls based on teh helper input parameters.
I am in a situation, where, I am able to render any control, except a CheckBox. As the CheckBoxFor helper accepts, Expression<Func<TModel, bool>>
I need a way to convert the return-type of the Func to bool, as mentioned in the title.