IdentityServer4 EF 核心
IdentityServer4 EF Core
我想将我的 api/client 配置移动到 sql 而不是在内存中。我遵循了教程,但无法通过 AddConfigurationStore 和 AddOperationalStore 生成 EF Migrations 或 DBContext。我不断收到错误提示 "no project.json is found" 或者如果我 运行 在包管理器 "Build Failed" 中添加迁移。我假设自从 VS 从 project.json 迁移到 csproj 后文档没有更新。
有什么特别的我可以做的来生成这些 dbcontext 和迁移脚本而无需手动执行(我可以使用您拥有的示例手动执行此操作,但我担心如果将来更新它,我最终会在某个地方遇到难以解决的问题)?
IdentityServer 目前仅支持 1.0.0-preview2-003131 SDK。意味着只有 VS2015 更新 3 和 project.json 直到 csproj 是 finalized/VS2017 被释放。
IdentityServer is built against ASP.NET Core 1.1.0 using the 1.0.0-preview2-003131 SDK. This is the only configuration we are going to support on the issue tracker.
Also we are staying on the project.json based tooling until Visual Studio 2017 has been released - IOW you need to use Visual Studio Update 3 with the preview ASP.NET Core tooling.
-- https://github.com/IdentityServer/IdentityServer4#platform
我想将我的 api/client 配置移动到 sql 而不是在内存中。我遵循了教程,但无法通过 AddConfigurationStore 和 AddOperationalStore 生成 EF Migrations 或 DBContext。我不断收到错误提示 "no project.json is found" 或者如果我 运行 在包管理器 "Build Failed" 中添加迁移。我假设自从 VS 从 project.json 迁移到 csproj 后文档没有更新。
有什么特别的我可以做的来生成这些 dbcontext 和迁移脚本而无需手动执行(我可以使用您拥有的示例手动执行此操作,但我担心如果将来更新它,我最终会在某个地方遇到难以解决的问题)?
IdentityServer 目前仅支持 1.0.0-preview2-003131 SDK。意味着只有 VS2015 更新 3 和 project.json 直到 csproj 是 finalized/VS2017 被释放。
IdentityServer is built against ASP.NET Core 1.1.0 using the 1.0.0-preview2-003131 SDK. This is the only configuration we are going to support on the issue tracker.
Also we are staying on the project.json based tooling until Visual Studio 2017 has been released - IOW you need to use Visual Studio Update 3 with the preview ASP.NET Core tooling.
-- https://github.com/IdentityServer/IdentityServer4#platform