MSDN Documentation

ASP.NET Core Database Tutorials

Dive into the world of data persistence with ASP.NET Core. These tutorials will guide you through connecting to, managing, and interacting with databases in your web applications.

Getting Started with Entity Framework Core

Learn the basics of using Entity Framework Core, the recommended Object-Relational Mapper (ORM) for ASP.NET Core, to interact with your database.

Learn More

Working with SQL Server

Explore how to set up and use SQL Server as your database backend for ASP.NET Core applications.

Learn More

Using SQLite with ASP.NET Core

Discover how to leverage SQLite for lightweight, file-based database solutions in your ASP.NET Core projects.

Learn More

Database Migrations with EF Core

Understand how to manage database schema changes over time using Entity Framework Core's migration features.

Learn More

CRUD Operations in ASP.NET Core

Master the fundamental Create, Read, Update, and Delete operations for data management in your web applications.

Learn More

Asynchronous Database Operations

Improve application performance and responsiveness by implementing asynchronous database calls.

Learn More

Connecting to NoSQL Databases

An introduction to integrating with NoSQL databases like MongoDB or Cosmos DB in your ASP.NET Core projects.

Learn More

Data Seeding and Initialization

Learn techniques to pre-populate your database with initial data for development and testing.

Learn More