Run the following SQL script to drop all existing tables:
Monday, January 20, 2025
Refreshing/Clean a Database with SQL and Entity Framework
Quick steps to refresh your database:
1. Drop All Tables
Run the following SQL script to drop all existing tables:
Note: when you try above than you got some errors but don't its because of relationship execute multiple times.
2. Recreate EF Migration Table
Recreate the EF migration table with this script:
3. Update the Database
Run the following command to reapply migrations and update the schema:
update-database
These steps ensure a clean database reset while maintaining EF migration compatibility.
Run the following SQL script to drop all existing tables:
Subscribe to:
Post Comments (Atom)
How to make Scheduler with Azure Queue using .net
I created Two methods one for schedule and log in db and second method is related to reschedule message. 1. Schedule and Reschedu...
-
Sometimes you add Angular SSR using @angular/ssr, but later want to return to a clean client-side app. Here's how to fully remove SSR (S...
-
Parallel processing in .NET can significantly improve performance when dealing with large collections. However, when working with scoped de...
-
This tutorial guides you through building an email notification system in ASP.NET Core using SendGrid. We’ll cover user registration, OTP em...
No comments:
Post a Comment