DEV Community

Cover image for Minimal APIs CRUD
Ashraful Islam
Ashraful Islam

Posted on

Minimal APIs CRUD

Video Link:
Minimal APIs CRUD

Minimal APIs are architected to create HTTP APIs with minimal dependencies. They are ideal for microservices and apps that want to include only the minimum files, features, and dependencies in ASP.NET Core.

var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello World!");
app.Run();

Top comments (0)