Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1 KB

README.md

File metadata and controls

32 lines (21 loc) · 1 KB

CRUD Operations in MVC .NET Core 6 with Bootstrap and Entity Framework Core Code-First

This repository provides a simple implementation of CRUD (Create, Read, Update, Delete) operations in an ASP.NET Core MVC application using .NET Core 6, Bootstrap for styling, and Entity Framework Core for data access with a Code-First approach.

Prerequisites

Before you begin, ensure you have the following installed:

  • .NET 6 SDK
  • Visual Studio or Visual Studio Code

Features

  • Create: Add new items to the database.
  • Read: View a list of existing items.
  • Update: Modify information of existing items.
  • Delete: Remove items from the database.

Technologies Used

  • .NET Core 6
  • ASP.NET Core MVC
  • Entity Framework Core (Code-First)
  • Bootstrap

Structure

  • Controllers: Contains MVC controllers for handling web requests.
  • Models: Defines the data models used by Entity Framework.
  • Views: Razor views for rendering HTML.
  • wwwroot: Static files like stylesheets and scripts.