Skip to content

Commit 7d8b758

Browse files
Integrated feedback from @IEvangelist.
1 parent 916d327 commit 7d8b758

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/database/use-entity-framework-db-contexts.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ EF interceptors allow developers to hook into and modify database operations at
217217

218218
Interceptors that depend on DI services are not supported by the .NET Aspire `Add\<DatabaseSystem\>DbContext` methods. Use the EF <xref:Microsoft.Extensions.DependencyInjection.EntityFrameworkServiceCollectionExtensions.AddDbContextPool*> method and call the <xref:Microsoft.EntityFrameworkCore.DbContextOptionsBuilder.AddInterceptors*> method in the options builder:
219219

220-
:::zone-pivot="sql-server-ef"
220+
:::zone pivot="sql-server-ef"
221221

222222
```csharp
223223
builder.Services.AddDbContextPool<ExampleDbContext>((serviceProvider, options) =>
@@ -235,7 +235,7 @@ builder.EnrichSqlServerDbContext<ExampleDbContext>(
235235
```
236236

237237
:::zone-end
238-
:::zone-pivot="postgresql-ef"
238+
:::zone pivot="postgresql-ef"
239239

240240
```csharp
241241
builder.Services.AddDbContextPool<ExampleDbContext>((serviceProvider, options) =>
@@ -253,7 +253,7 @@ builder.EnrichNpgsqlDbContext<ExampleDbContext>(
253253
```
254254

255255
:::zone-end
256-
:::zone-pivot="oracle-ef"
256+
:::zone pivot="oracle-ef"
257257

258258
```csharp
259259
builder.Services.AddDbContextPool<ExampleDbContext>((serviceProvider, options) =>
@@ -271,7 +271,7 @@ builder.EnrichOracleDatabaseDbContext<ExampleDbContext>(
271271
```
272272

273273
:::zone-end
274-
:::zone-pivot="mysql-ef"
274+
:::zone pivot="mysql-ef"
275275

276276
```csharp
277277
builder.Services.AddDbContextPool<ExampleDbContext>((serviceProvider, options) =>

docs/zones/zone-pivot-groups.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ groups:
6464
- id: nunit
6565
title: NUnit
6666
- id: entity-framework-client-integration
67-
title: .NET Aspire Entity Framework client integration
68-
prompt: Choose a .NET Aspire Entity Framework client integration
67+
title: .NET Aspire Entity Framework Core client integration
68+
prompt: Choose a .NET Aspire Entity Framework Core client integration
6969
pivots:
7070
- id: sql-server-ef
71-
title: SQL Server Entity Framework Core
71+
title: SQL Server
7272
- id: postgresql-ef
73-
title: PostgreSQL Entity Framework Core
73+
title: PostgreSQL
7474
- id: oracle-ef
75-
title: Oracle Entity Framework Core
75+
title: Oracle
7676
- id: mysql-ef
77-
title: Pomelo MySQL Entity Framework Core
77+
title: Pomelo MySQL

0 commit comments

Comments
 (0)