This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| echo Remember to install tooling first | |
| echo dotnet tool install --global dotnet-ef | |
| dotnet ef dbcontext scaffold "CONNECTION_STRING" ^ | |
| Microsoft.EntityFrameworkCore.SqlServer ^ | |
| --schema dbo ^ | |
| --output-dir "Models/Generated" ^ | |
| --namespace MY_NAMESCAPE ^ |