作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
实体
public class Region
{
[Key]
public int ID;
public string Name;
public string Description;
}
模型
public class RegionModel
{ [Key]
public int ID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
错误
System.Data.Edm.EdmEntityType: : EntityType 'Region' has no key defined. Define the key for this EntityType.
System.Data.Edm.EdmEntitySet: EntityType: EntitySet �Regions� is based on type �Region� that has no keys defined.
最佳答案
您的类字段需要更改为属性,以便 EF 正确使用该类;
public class Region
{
[Key]
public int ID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
关于asp.net-mvc - EntityType 没有定义键。 [Key] 出示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13901065/
我正在尝试在 Chromebook 上构建一个网络应用程序,我需要它来使用 ACR122U NFC 读取 RFID 卡序列号。我正在使用 chrome-nfc . 我正在愉快地阅读卡片,但我不知道如何
实体 public class Region { [Key] public int ID; public string Name; public string Desc
我是一名优秀的程序员,十分优秀!