...净 我在给定链接的教程的帮助下制作了一个简单的MVC项目:
http://www.codeproject.com/Articles/486161/Creating-a-simple-application-using-MVC
我在这个特定阶段遇到错误。
现在让我们在字段上应用验证:
Error 2 The type or namespace name 'DisplayName' could not be found (are you missing a using directive or an assembly reference?)
C:\Users\sword\Documents\Visual Studio 2012\Projects\MyCalculatorSrevice\MyMvc1\MyMvc1\Models\UserModels.cs
我搜索了它,但找不到任何可以删除此错误的内容。
帮帮我
thanx
答案 0 :(得分:1)
确保:
using System.ComponentModel;
导入注释。 希望它能帮到你,
答案 1 :(得分:0)
您实际上缺少对DataAnnotations
的引用。尝试在引用中添加以下行,它将开始工作。
using System.ComponentModel.DataAnnotations;