C# Razor EditorFor Checkbox coché par defaut
	
	
		Bonjour à tous !
J'aimerai avec razor avoir une checkbox cochée par défaut dans mon formulaire.
Comment faire ?
	Code:
	
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 
 |  
<div class="form-group">
           @Html.LabelFor(model => model.actif, htmlAttributes: new { @class = "control-label col-md-2" })
          <div class="col-md-10">
                   <div class="checkbox">
                           @Html.EditorFor(model => model.actif)
                           @Html.ValidationMessageFor(model => model.actif, "", new { @class = "text-danger" })
                  </div>
         </div>
</div> | 
 
j'ai essayé plusieurs chose telle que :
	Code:
	
| 12
 3
 4
 5
 6
 
 |  
@Html.EditorFor(model => model.actif, new { @checked="checked" })
 
@Html.EditorFor(model => model.actif, new { @checked="true" })
 
@Html.EditorFor(model => model.actif, true) | 
 mais rien ne fonctionne :(