Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit e5af7ce

Browse files
committed
Remove install package image
1 parent d5d4c7f commit e5af7ce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs/1. Create BackEnd API project.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@
4242
```
4343
1. Add a reference to the NuGet package `Microsoft.EntityFrameworkCore.SqlServer` version `3.0.0-preview6.19304.10`. Note that you'll need to resolve several references by adding missing `using` statements (`Ctrl + .` is your friend).
4444
> **If you'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`
45-
1. Add a reference to the NuGet package `Microsoft.EntityFrameworkCore.Sqlite` version `3.0.0-preview6.19304.10`. Note that you'll need to resolve several references by adding missing `using` statements (`Ctrl + .` is your friend).
46-
![](images/add-sqlite-nuget-reference.png "Adding the SQLite NuGet reference")
47-
45+
1. Add a reference to the NuGet package `Microsoft.EntityFrameworkCore.Sqlite` version `3.0.0-preview6.19304.10`. Note that you'll need to resolve several references by adding missing `using` statements (`Ctrl + .` is your friend).
4846
> **If you'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`
4947
1. Next we'll create a new Entity Framework DbContext. Create a new `ApplicationDbContext` class in the `Models` folder using the following code:
5048
```csharp

0 commit comments

Comments
 (0)