Skip to content

Commit 26b1919

Browse files
authored
Add (and remove) some 7's (and one 6) (#4140)
1 parent 84c841a commit 26b1919

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

entity-framework/core/extensions/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ EF Core extensions for Bulk operations (Insert, Update, Delete). For EF Core: 2,
9191

9292
### Bricelam.EntityFrameworkCore.Pluralizer
9393

94-
Adds design-time pluralization. For EF Core: 2, 3, 5, 6.
94+
Adds design-time pluralization. For EF Core: 2, 3, 5, 6, 7.
9595

9696
[GitHub repository](https://github.com/bricelam/EFCore.Pluralizer) | [NuGet](https://www.nuget.org/packages/Bricelam.EntityFrameworkCore.Pluralizer)
9797

@@ -213,7 +213,7 @@ LINQ extensions to Entity Framework Core 3.1 to support Microsoft SQL Server Tem
213213

214214
### EntityFrameworkCore.SqlServer.HierarchyId
215215

216-
Adds hierarchyid support to the SQL Server EF Core provider. For EF Core: 3, 5, 6.
216+
Adds hierarchyid support to the SQL Server EF Core provider. For EF Core: 3, 5, 6, 7.
217217

218218
[GitHub repository](https://github.com/efcore/EFCore.SqlServer.HierarchyId) | [NuGet](https://www.nuget.org/packages/EntityFrameworkCore.SqlServer.HierarchyId)
219219

@@ -233,7 +233,7 @@ An implementation for soft deleting entities. For EF Core: 3, 5, 6.
233233

234234
### EntityFrameworkCore.ConfigurationManager
235235

236-
Extends EF Core to resolve connection strings from App.config. For EF Core: 3, 5, 6.
236+
Extends EF Core to resolve connection strings from App.config. For EF Core: 3, 5, 6, 7.
237237

238238
[GitHub repository](https://github.com/efcore/EFCore.ConfigurationManager) | [NuGet](https://www.nuget.org/packages/EntityFrameworkCore.ConfigurationManager)
239239

@@ -277,7 +277,7 @@ Supports SQL Server, Postgres, MySql, SQLite and Oracle. For EF Core: 3, 5.
277277

278278
### EntityFrameworkCore.FSharp
279279

280-
Adds F# design-time support to EF Core. For EF Core: 5.
280+
Adds F# design-time support to EF Core. For EF Core: 5, 6.
281281

282282
[GitHub repository](https://github.com/efcore/EFCore.FSharp) | [NuGet](https://www.nuget.org/packages/EntityFrameworkCore.FSharp)
283283

entity-framework/core/managing-schemas/scaffolding/templates.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@ The first step to customizing the scaffolded code is to add the default template
2323
Start by installing the EF Core template package for `dotnet new`:
2424

2525
```dotnetcli
26-
dotnet new install Microsoft.EntityFrameworkCore.Templates::7.0.0-*
26+
dotnet new install Microsoft.EntityFrameworkCore.Templates
2727
```
2828

29-
> [!TIP]
30-
> The version suffix `::7.0.0-*` installs the latest prerelease version of the template package. It can be omitted once the final version of EF Core 7 is released.
31-
3229
Now you can add the default templates to your project. Do this by running the following command from your project directory.
3330

3431
```dotnetcli

entity-framework/core/what-is-new/ef-core-7.0/whatsnew.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1458,7 +1458,7 @@ Use TPT only if constrained to do so by external factors.
14581458
You can now customize the scaffolded code when reverse engineering an EF model from a database. Get started by adding the default templates to your project:
14591459

14601460
```dotnetcli
1461-
dotnet new install Microsoft.EntityFrameworkCore.Templates::7.0.0-*
1461+
dotnet new install Microsoft.EntityFrameworkCore.Templates
14621462
dotnet new ef-templates
14631463
```
14641464

0 commit comments

Comments
 (0)