0

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

[...]
4

1 に答える 1

0

@AntP のおかげで、クラス (したがってモデル) にカスタム属性を設定する方法と、プログラムでそれを取得する方法の例を見つけました。

http://msdn.microsoft.com/en-us/library/tw5zxet9%28v=vs.100%29.aspx

于 2013-11-05T11:29:51.143 に答える