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
- On Unix-like systems you might get an error like `zsh: no matches found: 7.*`, if so run: `dotnet tool install --global dotnet-ef --version 7.\*` (note the `\\` before the `*`)
6
+
- If you get warnings like `The Entity Framework tools version '7.0.11' is older than that of the runtime '7.0.13'. Update the tools for the latest features and bug fixes. See https://aka.ms/AAc1fbw for more information.`
7
+
you can run: `dotnet tool update --global dotnet-ef --version 7.0.13` or `dotnet tool update --global dotnet-ef --version 7.*` (mind the `*` on Unix-like systems)
8
+
3
9
## Supported Contexts
4
10
- Game (root `Game`, `GameContext` in code)
5
11
- Logging (root `Logging`, `LoggingContext` in code)
- On Unix-like systems you might get an error like `zsh: no matches found: 7.*`, if so run: `dotnet tool install --global dotnet-ef --version 7.\*` (note the `\\` before the `*`)
6
+
- If you get warnings like `The Entity Framework tools version '7.0.11' is older than that of the runtime '7.0.13'. Update the tools for the latest features and bug fixes. See https://aka.ms/AAc1fbw for more information.`
7
+
you can run: `dotnet tool update --global dotnet-ef --version 7.0.13` or `dotnet tool update --global dotnet-ef --version 7.*` (mind the `*` on Unix-like systems)
8
+
3
9
## Supported Contexts
4
10
- Game (root `Game`, `GameContext` in code)
5
11
- Logging (root `Logging`, `LoggingContext` in code)
0 commit comments