From 98e4c7bb108417b7c58b47925fdf3e983dc97f0c Mon Sep 17 00:00:00 2001 From: Tomas Bava Date: Thu, 27 Mar 2025 02:58:23 -0300 Subject: [PATCH] Update minimal-apis@ipABerBcM9zCte9pYaIse.md simple describe of minimalAPIs --- .../content/minimal-apis@ipABerBcM9zCte9pYaIse.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md b/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md index 19fa64730..aabef3e0c 100644 --- a/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md +++ b/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md @@ -1 +1,6 @@ -# Minimal APIs \ No newline at end of file +# Minimal APIs +Minimal APIs in ASP.NET Core are a simple way to create web APIs with less code. Instead of using controllers and many configurations, you can define API routes directly in the application’s startup file. + +They are lightweight, fast, and easy to use, making them great for small applications, microservices, and quick prototypes. You can still use features like dependency injection, middleware, and authentication, but with a simpler approach. + +Minimal APIs are best for simple and small applications.