是否可以創建類或類似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; }
}
嘗試exaplaining你想要什麼更好,例如使用一些代碼。我沒有得到你想要達到的目標。 –
你是否試圖限制'mytype'不超過20個字符或什麼? – 2013-10-31 08:51:58
您的問題的正確答案是「是」。如果你需要一個更有幫助和詳細的答案,你需要問一個更有幫助和詳細的問題。 – nvoigt