Thursday 5 May 2016

Examples of ASP.Net WebAPI and ASP.Net Core 1.0 WebAPI

I just released two sample APIs on Github.

One of them is done with the “old” approach but heads in the direction of my understanding of a modern WebAPI using OData and having DTOs instead of delivering the plain entitites down to the client.
I will cover the most important information now:
The get method includes odata and is restricting the page-size to 50 to prevent anyone from getting _all_ entries which can cause problems. I also added a paginationheader to enable paging and give the information included in the header “X-Pagination” value. Here you can add more stuff like link to the next page, link ot the previous page etc.
I am also using mapper to get a DataTransferObject (DTO) to send it to the client instead of my plain “entity”.
The only important thing to mention about the Create-Method is that we are returning a CreatedAtRoute-Actionresult. This causes, that we have a link to the created resource in the header so we can either redirect on the client directly to it, provide the link to the user or work with it in another way.
Also take care about sending back the Modelstate in case of an invalid dto.
Mostly forgotten: The Http-Patch-Verb. Its receiving a generic Delta-Object which can be applied to an existing entity and then can be updated.
And last but not least the delete-method. See the fact that one has to return a nocontent (204) which tells the client that the delete was successful.
You can find it here:
https://github.com/FabianGosebrink/ASPNET-WebAPI-Sample

It supports the GET/POST/PUT/PATCH/DELETE, so the normal CRUD-Approach. OData is included.
THe MVC6-Approach is present in another repository.
https://github.com/FabianGosebrink/ASPNET-Core-WebAPI-Sample
Here OData is not yet included. And the Patch is missing. Lets wait until MVC6 is finally released ðŸ˜‰
Comment if you have suggestions to make these examples better! Let me know.

No comments:

Post a Comment

Angular Tutorial (Update to Angular 7)

As Angular 7 has just been released a few days ago. This tutorial is updated to show you how to create an Angular 7 project and the new fe...