Forum Discussion

bibash's avatar
bibash
Copper Contributor
May 15, 2025

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

  • arunsurfer7's avatar
    arunsurfer7
    Copper 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

    1. Api documentation - either swagger / open api
    2. Add unit test to your project
    3. Add validation and error handling
    4. Always follow th restful naming convention in you api design
      1. [HttpGet("Delete/{Sn}")] - Use http delete instead of Get, name the method as noun

Resources