是否可以创建一个类或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; }
}
答案 0 :(得分:0)
您可以创建自己的数据注释。以下是解释如何操作的链接:http://www.codeproject.com/Articles/256183/DataAnnotations-Validation-for-Beginner