Sin categoría

Auto-Generating Angular web client services with Swashbuckle in .Net Core 5

When you are working with Angular and APIs it is very common that models need to be replicated in Angular and then services need to be created in order to call those APIs.

This repetitive job has to be done every time a new model is being created and each time a model is updated in the APIs a manual update has to be done on the Angular model.

Thanks to Swagger, which is the implementation of the Open API specification that comes by default when creating new web APIs in .Net core 5, it is possible to auto-generate client services and models in Angular.

Continue reading