Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は MVC を使用して Web ページを作成していますが、オプション フィールドにしたいので、フィールドを null 許容に設定できるかどうかを知りたいです。つまり、Required の反対です。ありがとうございました。
すべてのオブジェクト型は null 許容、つまりオプションtype?ですNullable<type>。そのプロパティの ModelBinder に値を指定しないと、NULL が返されます。
type?
Nullable<type>
モデルのオプション フィールドの [Required] 属性を省略すると、望ましい効果が得られます。