VScode 中的 EF 迁移
EF migration in VScode
我尝试使用 dotnet ef migrations add InitialCreate
进行迁移,但我收到了消息:
Build started...
Build succeeded.
System.ArgumentNullException: Value cannot be null. (Parameter 'connectionString')
appsettings.json
"ConnectionsStrings":{
"DefaultConnection":"Data Source=(localdb)\LocalDBApp1;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
},
Startup.cs
services.AddDbContext(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
你知道我该如何解决这个问题吗?
提前致谢
可能是打字错误,请尝试在 appsettings.json
中使用 ConnectionStrings
而不是 ConnectionsStrings
。
我尝试使用 dotnet ef migrations add InitialCreate
进行迁移,但我收到了消息:
Build started...
Build succeeded.
System.ArgumentNullException: Value cannot be null. (Parameter 'connectionString')
appsettings.json
"ConnectionsStrings":{ "DefaultConnection":"Data Source=(localdb)\LocalDBApp1;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False" },
Startup.cs
services.AddDbContext(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
你知道我该如何解决这个问题吗? 提前致谢
可能是打字错误,请尝试在 appsettings.json
中使用 ConnectionStrings
而不是 ConnectionsStrings
。