c# – 无法使用mvc3定义模型的键

前端之家收集整理的这篇文章主要介绍了c# – 无法使用mvc3定义模型的键前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_404_1@我正在尝试使用mvc3方法数据库中设置字段.当我运行程序时,我得到了一个

System.Data.Edm.EdmEntityType: : EntityType ‘CarModel’ has no key defined. Define the key for this EntityType.

我的模型看起来像这样

public class CarModel
{

    public string VIN { get; set; }
    public string Make { get; set; }
    public string Model { get; set; }
    public string Year { get; set; }
    public string Color { get; set; }
    public string Mileage { get; set; }
    public string Description { get; set; }
}

我已经看到人们在哪里添加ID,但数据库没有ID属性.当我尝试在VIN上面添加[Key]时,它是数据库中的主键.它在键下产生红色波浪形错误.

似乎我错过了一些参考.

解决方法

您缺少的引用可能是System.ComponentModel.DataAnnotations;如果您键入Ctrl-,这不会为您添加.光标旁边的[Key]?
原文链接:https://www.f2er.com/csharp/93473.html

猜你在找的C#相关文章