You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,22 +6,22 @@ Scaffold EF Core models using Handlebars templates.
6
6
7
7
## Prerequisites
8
8
9
-
-[Visual Studio 2019](https://www.visualstudio.com/downloads/) 16.3 or greater.
10
-
- The .[NET Core 3.0 SDK](https://www.microsoft.com/net/download/core).
9
+
-[Visual Studio 2019](https://www.visualstudio.com/downloads/) 16.4 or greater.
10
+
- The .[NET Core 3.1 SDK](https://www.microsoft.com/net/download/core).
11
11
12
12
## Database Setup
13
13
14
14
1. Use SQL Server Management Studio to connect to SQL Server
15
15
- The easiest is to use **LocalDb**, which is installed with Visual Studio.
16
16
Connect to: `(localdb)\MsSqlLocalDb`.
17
17
- Create a new database named **NorthwindSlim**.
18
-
- Download the data file from <http://bit.ly/northwindslim>.
18
+
- Download the data file from <http://bit.ly/northwind-slim>.
19
19
- Unzip **NorthwindSlim.sql** and run the script to create tables and populate them with data.
20
20
21
21
## Usage
22
22
23
23
1. Create a new **.NET Core** class library.
24
-
- If necessary, edit the csproj file to update the **TargetFramework** to 3.0.
24
+
- If necessary, edit the csproj file to update the **TargetFramework** to 3.1.
25
25
26
26
> **Note**: Using the EF Core toolchain with a _.NET Standard_ class library is currently not supported. Instead, you can add a .NET Standard class library to the same solution as the .NET Core library, then add existing items and select **Add As Link** to include entity classes.
27
27
@@ -253,7 +253,7 @@ public class ScaffoldingDesignTimeServices : IDesignTimeServices
0 commit comments