MVC3 でモデルを作成するとき、次の例 [MyCustomValue()] のようにプロパティにカスタム値を設定する回避策と、後でその値をプログラムで取得する方法はありますか?
Imports System.ComponentModel
Imports System.ComponentModel.DataAnnotations
Imports System.Web.Mvc
Imports System.Collections.Generic
Public Class MyModel
Public Property MyModelId As Integer
<StringLength(20), MyCustomValue(True)>
Public Property Name As String
[...]