Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cvam29 committed Jan 15, 2024
1 parent 777a1d3 commit e03cbff
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 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.

0 comments on commit e03cbff

Please sign in to comment.