你好我正在嘗試對我的表單進行驗證,並且我獲得了這個錯誤!驗證表單時出錯?
錯誤10類型或命名空間名稱DataAnnotations'不存在命名空間中的「System.ComponentModel」 (是否缺少程序集 參考?)
我怎樣才能解決這個問題?
我使用「using System.ComponentModel.DataAnnotations;」在其他模型,做工精細...
,但我有這等型號:
public class CompuViewModel
{
public List<Compu> PackageCompu { get; set; }
}
public class Compu
{
public int Id { get; set; }
public string Name { get; set; }
}
我試圖把在各個領域[Require]
,但引發錯誤!
有什麼想法?
組裝......你有裝配引用System.ComponentModel? – Brandon