From e03cbffdecaec878b46a495b0235af12378d4df6 Mon Sep 17 00:00:00 2001 From: Shivam Panchal <70092511+cvam29@users.noreply.github.com> Date: Mon, 15 Jan 2024 12:08:24 +0530 Subject: [PATCH] Create README.md --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b9fc6f3 --- /dev/null +++ b/README.md @@ -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. +