Create a Simple Database App With ASP.NET Core

In this post, we will create an ASP.NET Core application that connects to a database and uses CRUD (create, read, update, delete) to manage database records. CURD Using CRUD (create, read, update, delete)  in ASP.NET Core allows us to create applications that connect to a database and manage records. Entity Framework (EF) Core To connect … Read more

Add a New Razor Page To ASP.NET 5 Project

ASP.NET Razor Pages is a new web framework for building dynamic pages using templates, partials, and code-behind files. Razor Pages has been built from the ground up with a singular focus on creating simple yet powerful web pages. There’s no view engine to decide between server-side or client-side templating, so you have the option to write your markup in whatever way works best for you and your application.

Read more