https://github.com/rd003/mvccoretutorial
Roller coaster ride of dot net core mvc 7.0/8.0 with CRUD operations
https://github.com/rd003/mvccoretutorial
Last synced: 13 days ago
JSON representation
Roller coaster ride of dot net core mvc 7.0/8.0 with CRUD operations
- Host: GitHub
- URL: https://github.com/rd003/mvccoretutorial
- Owner: rd003
- License: agpl-3.0
- Created: 2022-11-16T15:11:41.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-12T09:35:09.000Z (over 2 years ago)
- Last Synced: 2025-03-02T09:45:34.664Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# MvcCoreTutorial
Upgraded to .net 8.0
# How to run it
1. clone the project
`git clone https://github.com/rd003/MvcCoreTutorial.git`
2. open `appsettings.json` file and update connection string's
"ConnectionStrings": { "conn": "data source=your_server;initial catalog=MvcCoreTutorial;integrated security=true;TrustServerCertificate=True" }
4. Delete `Migrations` folder
5. Open Tools > Package Manager > Package manager console
6. Run these 2 commands
```
(i) add-migration init
(ii) update-database
````
7. Now you can run this project