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
{{ message }}
This repository was archived by the owner on Jul 10, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/1. Create BackEnd API project.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,7 @@
38
38
```
39
39
1. AddareferencetotheNuGetpackage `Microsoft.EntityFrameworkCore.SqlServer` version `3.0.0-preview6.19304.10`. Notethatyou'll need to resolve several references by adding missing `using` statements (`Ctrl + .` is your friend).
40
40
>**Ifyou're not using Visual Studio** install the package from the command line with `dotnet add package Microsoft.EntityFrameworkCore.SqlServer --version 3.0.0-preview6.19304.10`
41
-
1. AddareferencetotheNuGetpackage `Microsoft.EntityFrameworkCore.Sqlite` version `3.0.0-preview6.19304.10`. Notethatyou'll need to resolve several references by adding missing `using` statements (`Ctrl + .` is your friend).
42
-

43
-
41
+
1. AddareferencetotheNuGetpackage `Microsoft.EntityFrameworkCore.Sqlite` version `3.0.0-preview6.19304.10`. Notethatyou'll need to resolve several references by adding missing `using` statements (`Ctrl + .` is your friend).
44
42
>**Ifyou're not using Visual Studio** install the package from the command line with `dotnet add package Microsoft.EntityFrameworkCore.Sqlite --version 3.0.0-preview6.19304.10`
45
43
1. Nextwe'll create a new Entity Framework DbContext. Create a new `ApplicationDbContext` class in the `Models` folder using the following code:
0 commit comments