I am new to MVC
and using MVC5
along with angular-material. I want to implement MVC model variable with angular material checkbox (md-checkbox) .
This is my md-checkbox
implementation .
<md-checkbox ng-model="user.rememberMe" aria-label="Remember Me">
Remember Me
</md-checkbox>
and want to implement Model variable RememberMe
as like this in my view .
<div class="checkbox">
@Html.CheckBoxFor(m => m.RememberMe)
@Html.LabelFor(m => m.RememberMe)
</div>
How can i do that ?