数据类型和注释属性重用

时间:2013-10-31 08:26:00

标签: c#

是否可以创建一个类或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; }
}

1 个答案:

答案 0 :(得分:0)

您可以创建自己的数据注释。以下是解释如何操作的链接:http://www.codeproject.com/Articles/256183/DataAnnotations-Validation-for-Beginner