0

我的一位同事不小心从我的数据库中删除了 UserProfiles 表,该表是从模型类生成的。

这是模型类的样子:

namespace OneMillion.Models
{
    [Table("UserProfile")]
    public class User
    {
        [Key]
        [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
        public int UserId { get; set; }
        public string UserName { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public int Age { get; set; }
        public string Sex { get; set; }
        public string SecretQuestion { get; set; }
        public string SecretQuestionAnswer { get; set; }
        public int MoneyIn { get; set; }
        public int MoneyOut { get; set; }
        public int TimesWon { get; set; }
    }
}

当我尝试通过包管理器控制台更新数据库时,我收到此错误:

Cannot find the object "dbo.UserProfile" because it does not exist or you do not have permissions.

数据迁移已启用。我该如何解决这个问题?我要删除整个数据库吗?

4

1 回答 1

0

您能否以具有足够权限来创建数据库的用户身份连接到数据库?您可以在 SSMS 中以该用户身份登录并使用适当的列等创建表。然后该表存在,迁移可以找到它。

于 2013-06-02T23:42:47.710 回答