私の見解では、これを行うとドロップダウンリストが正しく表示されます-
@Html.DropDownListFor(m => m.SelectedEstimateState, Model.EstimateStateList.ToSelectList(c => c.Value, c => c.Text), new { });
しかし、私がこれを行うときではありません-
@{
Html.DropDownListFor(m => m.SelectedEstimateState, Model.EstimateStateList.ToSelectList(c => c.Value, c => c.Text), new { });
}
2つの違いは何ですか?