Part 1 - Understanding and working with ASP.NET Core 6.0 Minimal API - Building Microservices

preview_player
Показать описание
In this video, we will understand and work with ASP.NET Core 6.0 Minimal API to build a simple microservice. ASP.NET Core Minimal API is a low footprint and a super mini-sized project type that helps to develop an API with less code.

#entityframework #minimalapi #aspnetcore #executeautomation
For more articles and videos, please follow
► [Twitter] @executeauto
► [Subscribe] @Execute Automation

Selenium and C#
******************

Selenium &Java
******************

CI/CD with Microsoft Technologies
****************************

Docker & Kubernates
************************

Mobile Testing
****************

Рекомендации по теме
Комментарии
Автор

This is a very valuable series of videos. Thanks for sharing.

mohammadsj
Автор

Liked the short and concise video. What browser do you use which shows JSON?

ckbeg
Автор

Why did you have to use WriteAsJsonAsync when returning the employee by id instead of just returning the employee object?

muscleheadzzzz
Автор

What does this have to do with microservices?

MehranRajabi
Автор

Muy bien explicado al estilo minimalista xD. Te consulto. Se puede tener mas de un .cs Program? en el ejemplo lo usas para devolver la clase employee, pero si ademas quisiera devolver otras clases? como seria la estructuracion?

JoseOjeda-vxzs
Автор

Where is tha "Microservices" ???

adrianotcc
Автор

I tried to understand but the speaking is too fast when there is an accent already, try slow down and thanks for the vid

hongcai
Автор

You can just map the id in the method without using the http context

app.MapGet("/employee/{id}", (int id) =>
{
return Results.Ok($"Id => {id}");
});

mohamedguebli