In this article, we will create a Web API with in-memory database using Entity Framework and ASP.NET Core 2.0 without any theoretical explanation. To know more on concepts and theory, my previous articles can be referred.
Let’s quickly create a new ASP.NET Core application by choosing API
template and name it as ConferencePlanner. Add a new Model entity named
Workshop inside a newly add Models folder as shown below:
}
Here we are going to use in-memory class along with EF. So,
we have to add a new class for setting up the database context as shown below:
Now we have to maintain multiple workshops under a conference. So, go ahead and add a DBSet in ApplicationContext class:}
       
public DbSet<Workshop> Workshops { get; set; }       
 
Next is to register the DBContext with our application. So,
add the below code in Startup.cs class:Now we will add an Empty Controller using scaffolding options and name it as WorkshopController. Here we also have to associate database context with this controller. So, let’s associate the database context as shown below with some dummy data in it.}
Let's add our first method to get a list of all workshops by adding below code:}
[HttpPost]
public IEnumerable<Workshop> GetWorkshops(){return _context.Workshops; } 
[{"id":1,"name":"Event
Management","speaker":"Shweta"}]
Now our base setup is ready. We can add add the CRUD operations. Let’ go ahead and add those.
In above code snippet, CreateAtRoute() method is associating newly added workshop object to exiting list of workshops. So, that it can be read by method GetWorkshops().
public IActionResult AddWorkshop(Workshop workshop){if (workshop == null)return BadRequest();_context.Workshops.Add(workshop);_context.SaveChanges();return CreatedAtRoute("GetWorkshops", new { id = workshop.Id }, workshop);}
Hope you enjoyed learning CRUD operations.}
Comments
Post a Comment