Uninstall EntityFramework using the Package Manager Console

后端 未结 9 773
死守一世寂寞
死守一世寂寞 2021-02-01 17:30

I\'m trying to re-install my EntityFramework package using

PM> Install-Package EntityFramework

But I get the following message

9条回答
  •  情书的邮戳
    2021-02-01 17:45

    I experienced a similar issue, and it came down to an incorrect path. You are unable to find the package as the full namespace for Entity Framework is Microsoft.AspNet.Identity.EntityFramework.

    Therefore, to uninstall you need to enter the following into the Package Manager:

    Uninstall-Package Microsoft.AspNet.Identity.EntityFramework

提交回复
热议问题