All Questions
Tagged with asp.net-mvc-web-api api
3 questions
0
votes
2
answers
611
views
Wait time created by having separated REST API and web application
I created a new Asp.Net MVC web project. I took the decision to create two different apps, the first one would be a web REST API that would provide all data for the second one, which would essentially ...
1
vote
1
answer
397
views
Architecture for email service API
I would like to build an application for sending emails. So I chose ASP.NET Core (API) which will be deployed by Docker.
The application will get some request and "do some things" and then sends ...
2
votes
1
answer
6k
views
ASP.NET Web API: enum or strings
I have an ASP.NET Web API application. It uses enums for some fixed sets of states or types. Now I need to extend enum to support more values. But it will break backwards compatibility so I need to ...