minimal-apis.github.io
minimal-apis.github.io copied to clipboard
Tutorials and samples for ASP.NET Core Minimal APIs

**Describe the bug** In Tutorial Three: Add a Database, I run into an error when I run `dotnet ef migrations add InitialCreate`. **To Reproduce** Steps to reproduce the behavior: 1....
`using Microsoft.OpenApi.Models; using Microsoft.EntityFrameworkCore; using Microsoft.AspNetCore.Mvc; var builder = WebApplication.CreateBuilder(args); builder.Services.AddEndpointsApiExplorer(); builder.Services.AddDbContext(options => options.UseInMemoryDatabase("items")); builder.Services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "Todo API", Description = "Keep track of...
 Remove the mini.cs icon from the page.
The current quick start page to something more meaningful to the user https://minimal-apis.github.io/quickstart/ 
What would you like see: - [x] Documentation This issue is intended to capture the content needed for the minimal APIs quick start. These quick starts are designed to provide...
Wildcard character should be **before** the parameter, not after. See: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/minimal-apis?view=aspnetcore-6.0#wildcard-and-catch-all-routes
Please let me know if I am missing something on my end, but I wanted to note that when I tested out the 'Returning HTML' section, nothing pops up for...