我尝试在Visual Studio 2022, EntityFramework 6上添加迁移,但它不起作用。我得到一个错误
PM> EntityFrameworkAdd-Migration -ConfigurationTypeName STS.Core.Migrations.Configuration "AddCheckChanges"
System.ArgumentNullException: Value cannot be null.
Parameter name: type
at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Activator.CreateInstance(Type type, Object[] args)
at System.Data.Entity.Migrations.Extensions.ProjectExtensions.GetProjectTypes(Project project, Int32 shellVersion)
at System.Data.Entity.Migrations.Extensions.ProjectExtensions.IsWebSiteProject(Project project)
at System.Data.Entity.Migrations.Extensions.ProjectExtensions.GetTargetDir(Project project)
at System.Data.Entity.Migrations.MigrationsDomainCommand.GetFacade(String configurationTypeName, Boolean useContextWorkingDirectory)
at System.Data.Entity.Migrations.AddMigrationCommand.Execute(String name, Boolean force, Boolean ignoreChanges)
at System.Data.Entity.Migrations.MigrationsDomainCommand.Execute(Action command)
Value cannot be null.
Parameter name: type
我需要帮助。非常感谢
对于那些使用Visual Studio 2022有此问题的人:切换回Visual Studio 2019,因为当您使用较旧的实体框架版本时,它在2022版本中还不起作用。
关于Entity Framework 6 GitHub仓库中的相关问题文件,项目成员ajcvickers评论于20121-11-18:
[...] EF 6.2 doesn't work. You will need to update to EF 6.4.4. We have so far been unable to reproduce this with EF 6.4.4.
虽然许多用户报告升级到EF 6.4.4解决了他们的问题,但这个问题仍然存在,因为有些用户不能降级到Visual Studio 2019或升级实体框架,因为这些变化可能会破坏管道。