MVC CORE 做RadioButtonFor
這是是要做出RadioButtonFor
很簡單
在view直接寫就可以了
 <div class="form-group" style="width: 1000px;">
        <label asp-for="QUESTION" class="control-label"></label>
        <br></br>
        @Html.RadioButtonFor(model => model.QUESTION, "否")
        否
        <br></br>
        @Html.RadioButtonFor(model => model.QUESTION, "是")
        是
        <span asp-validation-for="QUESTION" class="text-danger"></span>
</div>
自我LV~