我有一个 MVC 应用程序,其中我将我的模型定义为专辑,如下所示:
public int AlbumId { get; set;}
public int GenersId { get; set; }
public int ArtistId { get; set; }
public string Title { get; set; }
public String Price { get; set; }
public String AlbumArtUrl { get; set; }
public Geners Geners { get; set; }
public Artist Artist { get; set; }
在这个模型中,GenersId 以前是 GenerId 然后我将它更改为 GenersId 。现在在 index 方法中它向我显示如下错误:
自数据库创建以来,支持“MusicstoreEntity”上下文的模型已更改。考虑使用 Code First 迁移来更新数据库
MusicstoreEntity 是我创建的模型实体。请建议我