You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
560 B
17 lines
560 B
# EF_WebAPI
|
|
|
|
This repository make a meeting of EF and WebAPI parts.
|
|
|
|
FROM /src dir
|
|
|
|
do
|
|
|
|
```bash
|
|
dotnet ef migrations add --project StubbedContextLib/StubbedContextLib.csproj --startup-project HeartTrackAPI/HeartTrackAPI.csproj --context StubbedContextLib.TrainingStubbedContext --configuration Debug Initial --output-dir Migrations
|
|
```
|
|
then
|
|
|
|
```bash
|
|
dotnet ef database update --project StubbedContextLib/StubbedContextLib.csproj --startup-project HeartTrackAPI/HeartTrackAPI.csproj --context StubbedContextLib.TrainingStubbedContext --configuration Debug
|
|
```
|