有没有.NET库System.ComponentModel.DataAnnotations的小抄?
这是用于标记ASP.NET MVC3模型类的库。
例如:
[Required]
[MaxLength(20)]
[Display(Name = "Asset")]
public string AssetNumber { get; set; }
[Required]
public int StatusID { get; set; }发布于 2012-04-10 22:44:26
MSDN documentation怎么样?
https://stackoverflow.com/questions/10090892
复制相似问题