minimal-apis.github.io icon indicating copy to clipboard operation
minimal-apis.github.io copied to clipboard

Tutorials and samples for ASP.NET Core Minimal APIs

Results 35 minimal-apis.github.io issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/88981/167188406-12ed425b-9200-472e-9306-0e100ca866e9.png)

**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...

![image](https://user-images.githubusercontent.com/2546640/165831783-89857e75-0190-4271-96d1-c7683cb83c1f.png) Remove the mini.cs icon from the page.

bug
good first issue

The current quick start page to something more meaningful to the user https://minimal-apis.github.io/quickstart/ ![image](https://user-images.githubusercontent.com/2546640/166294327-6e4455ca-11c1-4c4f-96d8-dd52ccee046a.png)

documentation
Getting Started

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...

documentation
help wanted
Getting Started

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...

documentation
Getting Started