标签:c项目 red serve mvc exce style using 添加 round
九、使用EntityFramework核心进行配置和操作数据
1,使用 dotnet new mvc 创建一个mvc项目
2,nuget IdentityServer4
3,修改Startup
public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddIdentityServer()//在DI中注册IdentityServer服务,它还为运行时状态注册一个内存存储 .AddDeveloperSigningCredential();//设置临时签名凭证 } public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseIdentityServer(); } }
九、使用EntityFramework核心进行配置和操作数据
标签:c项目 red serve mvc exce style using 添加 round
原文地址:https://www.cnblogs.com/zd1994/p/9193475.html