سلام
توی ویو به این صورت کار کنید
<div class="editor-label">
@Html.LabelFor(model => model.IsAllowCommenting)
</div>
<div class="editor-field">
@Html.DropDownList("IsPublish", new SelectListItem[] {
new SelectListItem(){Text="بدون انتخاب",Value="" },
new SelectListItem(){Text=" بله",Value=bool.TrueString, Selected=true},
new SelectListItem(){Text="خیر",Value=bool.FalseStr ing}
})
</div>