EF中的数据注释问题
本文关键字:注释 问题 数据 EF | 更新日期: 2023-09-27 18:26:12
HI我有以下实体类
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)]的visual studio中,我在索引下看到红线,上面写着找不到类型或命名空间索引。请告诉我该怎么修谢谢'
您需要添加:
using System.ComponentModel.DataAnnotations.Schema;
不得不重新安装EF,之后一切正常。感谢