ASP.net core error format.
Now and then I forget what the error return format is, so a screen shot of what that should look like.
Feb 24, 20211 min read50
Search for a command to run...
Articles tagged with #aspnet-core
Now and then I forget what the error return format is, so a screen shot of what that should look like.
A great article How to do OAuth2 Authorization in ASP.NET Core for Swagger UI using Swashbuckle Gist services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "My Service API", Version = "v1" }); var fileName = typeof(Program...
Here is a nice article on Implementing Health Checks in ASP.NET Core. Gist public void ConfigureServices(IServiceCollection services) { services.AddHealthChecks() .AddDbContextCheck<WeatherForecastDbContext>(); services.AddControlle...