Attention: We are retiring the ASP.NET Community Blogs. Learn more >

Use Ajax to perform CRUD operations in ASP.NET Core Razor Pages

ASP.NET Core Razor Pages offer a simple page based programming model for the developers. A razor pages consists of a .cshtml files and associated page model class. The page model class can house actions to handle HTTP verbs. For example, a page model class can contain OnGet(), OnPost(), OnPut(), and OnDelete() actions to deal with GET, POST, PUT, and DELETE verbs respectively. This sounds straightforward as far as requests are initiated by a form. However, things are bit tricky while making Ajax calls to a razor page. To that end this article illustrates how to develop a razor page that performs CRUD operations using Ajax calls.

http://www.binaryintellect.net/articles/16ecfe49-98df-4305-b53f-2438d836f0d0.aspx