コレクションベースのプロパティのデータアノテーション検証ルールはありますか?MVCコレクションのデータ注釈検証ルール?
私はコレクションのサイズの最小値を設定するにはTechnicalServicesプロパティに追加できるバリデータを探しています、次の
<DisplayName("Category")>
<Range(1, Integer.MaxValue, ErrorMessage:="Please select a category")>
Property CategoryId As Integer
<DisplayName("Technical Services")>
Property TechnicalServices As List(Of Integer)
を持っています。
正解CGK! – Francisco