当我在 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
[...]