This is a minimalAPI project with CRUD operations on a user. It is a great starting point if you want to learn about MinimalAPI's in dotnet or if you want to quickly start making a MinimalAPI with a decoupled structure so that there are no necessary dependencies.
- Clone the project onto your machine.
- Create your SQL database by publishing the UserDB to your specific environment.
- Add a connection string in the appsettings.json file and specifically in the "Default" : "" section in the application.
- Run the project.
- This application makes use of the Dapper microORM to access data from the database for data speedup.
- The UserDB project is loaded with some stored procedures that dapper will run, there is also some data seeding going on to make your job easier.
- Enjoy working with this template😃