Chapter Summary
In the last few chapters, we have put a lot of work into the underlying architectural fabric of our API, but we’ve only implemented two of our endpoints (controller actions). In this chapter we address this and move up a gear to finalize our remaining four endpoints.
When Done, You Will
Understand how data changes are persisted by Entity Framework Core.
Have fully implemented our Create (POST) resource endpoint.
Have fully implemented our two Update (PUT and PATCH) resource endpoints.
Have fully implemented our Delete (DELETE) resource endpoint.
Understand ...