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 回答