0

stringデータ注釈属性を持つ差分モデルに再利用できる クラスなどを作成することは可能ですか?

モデルコード:

public class Model1
{
    public mytype type1 { get; set; }
    public string type2 { get; set; }
}

public class Model2
{
    public mytype type1 { get; set; }
    public string type2 { get; set; }
}

基本クラス

public class mytype
{
    [StringLength(20)]
    public string mytype { get; set; }
}
4

1 に答える 1

0

独自のデータ注釈を作成できます。これを行う方法を説明するリンクは次のとおりです。 http://www.codeproject.com/Articles/256183/DataAnnotations-Validation-for-Beginner

于 2013-10-31T09:12:24.007 に答える