Forum Discussion
Help with my ASP.NET API Application
I have been developing API for a full stack application with React FrontEnd in ASP.NET for my Internship project which is an Asset Management System. I have successfully implemented API Endpoints for CRUD with Authentication with JWT. What topic should I learn next ? Should I start providing API Documentation or is there something else I need to learn ? I have also uploaded the Schema the project is using.
I am using ADO.NET instead of Entity Framework for quering with the database. The link to my Repository Source Code: https://github.com/bibashmanjusubedi/Internship
1 Reply
- arunsurfer7Copper Contributor
Hi Bibash, that is awesome, you have made good progress with your project. Since you have already implemented CRUD operations wiht JWT authentication here are meaninful next steps you can explore
- Api documentation - either swagger / open api
- Add unit test to your project
- Add validation and error handling
- Always follow th restful naming convention in you api design
- [HttpGet("Delete/{Sn}")] - Use http delete instead of Get, name the method as noun