DEV Community

Cover image for Create a Notes APP using ASP.NET Web API and Javascript
sameer8saini
sameer8saini

Posted on

Create a Notes APP using ASP.NET Web API and Javascript

This is part 1 of the video series in which we will create a notes application using ASP.NET Web API as our backend and we will use Entity Framework to save our data to a SQL server database.

We will cover the CRUD operations in our app.

Here's the step by step operations as covered in the video:

  1. Create a new ASP.NET Web API
  2. Install Nuget packages for Entity Framework Core
  3. Create Domain models for our Notes application
  4. Create DbContext class
  5. Create Connection String in Appsettings.Json
  6. Inject the DbContext in the services collection
  7. Run Entity framework migrations.
  8. Create new controller
  9. Create and test CRUD Operations

Top comments (0)