我有以下实体类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;
namespace myspace
{
class aList
{
public int Id { get; set; }
[Index("atIdIndex", IsUnique=true)]
public int atId { get; set; }
public string description { get; set; }
}
}
在视觉工作室的[索引(" atIdIndex",IsUnique = true)]我在索引下得到红线,它说 无法找到类型或命名空间索引。 请让我知道如何解决它谢谢 '
答案 0 :(得分:0)
您需要添加:
using System.ComponentModel.DataAnnotations.Schema;
答案 1 :(得分:0)
不得不重新安装EF,之后工作正常。谢谢