我想將DataAnnotations存儲在數據庫中。如何通過反射(或通過其他方法)檢索DataAnnotation的字符串表示形式?序列化DataAnnotations
例
public class Product
{
[DisplayName("Price")]
[Required]
[RegularExpression(@"^\$?\d+(\.(\d{2}))?$")]
public decimal UnitPrice { get; set; }
}
結果可能是XML或JSON數據,只要它是字符串化。
你能解釋爲什麼你真的想要這樣嗎? – Steven 2010-10-31 20:15:24
原因是我建立了一個CMS,我想從DTO類構建「內容類型」。 – W3Max 2010-10-31 23:40:21