Aspire.Oracle.EntityFrameworkCore
13.0.0
Prefix Reserved
dotnet add package Aspire.Oracle.EntityFrameworkCore --version 13.0.0
NuGet\Install-Package Aspire.Oracle.EntityFrameworkCore -Version 13.0.0
<PackageReference Include="Aspire.Oracle.EntityFrameworkCore" Version="13.0.0" />
<PackageVersion Include="Aspire.Oracle.EntityFrameworkCore" Version="13.0.0" />
<PackageReference Include="Aspire.Oracle.EntityFrameworkCore" />
paket add Aspire.Oracle.EntityFrameworkCore --version 13.0.0
#r "nuget: Aspire.Oracle.EntityFrameworkCore, 13.0.0"
#:package Aspire.Oracle.EntityFrameworkCore@13.0.0
#addin nuget:?package=Aspire.Oracle.EntityFrameworkCore&version=13.0.0
#tool nuget:?package=Aspire.Oracle.EntityFrameworkCore&version=13.0.0
Aspire.Oracle.EntityFrameworkCore library
Registers EntityFrameworkCore DbContext service for connecting Oracle database. Enables connection pooling, retries, health check, logging and telemetry.
Getting started
Prerequisites
- Oracle database and connection string for accessing the database.
Install the package
Install the Aspire Oracle EntityFrameworkCore library with NuGet:
dotnet add package Aspire.Oracle.EntityFrameworkCore
Usage example
In the AppHost.cs file of your project, call the AddOracleDatabaseDbContext extension method to register a DbContext for use via the dependency injection container. The method takes a connection name parameter.
builder.AddOracleDatabaseDbContext<MyDbContext>("orcl");
You can then retrieve the MyDbContext instance using dependency injection. For example, to retrieve the context from a Web API controller:
private readonly MyDbContext _context;
public ProductsController(MyDbContext context)
{
_context = context;
}
You might also need to configure specific option of Oracle database, or register a DbContext in other ways. In this case call the EnrichOracleDatabaseDbContext extension method, for example:
var connectionString = builder.Configuration.GetConnectionString("catalogdb");
builder.Services.AddDbContextPool<CatalogDbContext>(dbContextOptionsBuilder => dbContextOptionsBuilder.UseOracle(connectionString));
builder.EnrichOracleDatabaseDbContext<CatalogDbContext>();
Configuration
The Aspire Oracle EntityFrameworkCore component provides multiple options to configure the database connection based on the requirements and conventions of your project.
Use a connection string
When using a connection string from the ConnectionStrings configuration section, you can provide the name of the connection string when calling builder.AddOracleDatabaseDbContext<TContext>():
builder.AddOracleDatabaseDbContext<MyDbContext>("myConnection");
And then the connection string will be retrieved from the ConnectionStrings configuration section:
{
"ConnectionStrings": {
"myConnection": "Data Source=TORCL;User Id=myUsername;Password=myPassword;"
}
}
The EnrichOracleDatabaseDbContext won't make use of the ConnectionStrings configuration section since it expects a DbContext to be registered at the point it is called.
See the ODP.NET documentation for more information on how to format this connection string.
Use configuration providers
The Aspire Oracle EntityFrameworkCore component supports Microsoft.Extensions.Configuration. It loads the OracleEntityFrameworkCoreSettings from configuration by using the Aspire:Oracle:EntityFrameworkCore key. Example appsettings.json that configures some of the options:
{
"Aspire": {
"Oracle": {
"EntityFrameworkCore": {
"DisableHealthChecks": true,
"DisableTracing": true
}
}
}
}
Use inline delegates
Also you can pass the Action<OracleEntityFrameworkCoreSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:
builder.AddOracleDatabaseDbContext<MyDbContext>("orcl", settings => settings.DisableHealthChecks = true);
or
builder.EnrichOracleDatabaseDbContext<MyDbContext>(settings => settings.DisableHealthChecks = true);
AppHost extensions
In your AppHost project, install the Aspire.Hosting.Oracle library with NuGet:
dotnet add package Aspire.Hosting.Oracle
Then, in the AppHost.cs file of AppHost, register an Oracle container and consume the connection using the following methods:
var freepdb1 = builder.AddOracle("oracle").AddDatabase("freepdb1");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(freepdb1);
The WithReference method configures a connection in the MyService project named freepdb1. In the Program.cs file of MyService, the database connection can be consumed using:
builder.AddOracleDatabaseDbContext<MyDbContext>("freepdb1");
Additional documentation
- https://learn.microsoft.com/ef/core/
- https://github.com/dotnet/aspire/tree/main/src/Components/README.md
Feedback & contributing
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Microsoft.Extensions.Caching.Memory (>= 8.0.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.22)
- Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore (>= 8.0.22)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.3)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- OpenTelemetry.Extensions.Hosting (>= 1.9.0)
- Oracle.EntityFrameworkCore (>= 8.23.90)
- Oracle.ManagedDataAccess.OpenTelemetry (>= 23.26.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 13.0.0 | 349 | 11/11/2025 | |
| 9.5.2 | 556 | 10/23/2025 | |
| 9.5.1 | 1,812 | 10/3/2025 | |
| 9.5.0 | 1,935 | 9/25/2025 | |
| 9.4.2 | 2,042 | 9/2/2025 | |
| 9.4.1 | 1,937 | 8/12/2025 | |
| 9.4.0 | 1,533 | 7/29/2025 | |
| 9.3.1 | 2,202 | 6/10/2025 | |
| 9.3.0 | 1,872 | 5/19/2025 | |
| 9.2.1 | 2,968 | 4/24/2025 | |
| 9.2.0 | 1,841 | 4/10/2025 | |
| 9.1.0 | 10,312 | 2/25/2025 | |
| 9.0.0 | 10,490 | 11/12/2024 | |
| 9.0.0-rc.1.24511.1 | 194 | 10/15/2024 | |
| 8.2.2 | 7,262 | 10/24/2024 | |
| 8.2.1 | 10,658 | 9/26/2024 | |
| 8.2.0 | 4,301 | 8/29/2024 | |
| 8.1.0 | 2,765 | 7/23/2024 | |
| 8.0.2 | 2,452 | 6/28/2024 | |
| 8.0.1 | 5,021 | 5/21/2024 | |
| 8.0.0 | 1,668 | 5/21/2024 | |
| 8.0.0-preview.7.24251.11 | 215 | 5/7/2024 | |
| 8.0.0-preview.6.24214.1 | 301 | 4/23/2024 | |
| 8.0.0-preview.5.24201.12 | 205 | 4/9/2024 | |
| 8.0.0-preview.4.24156.9 | 299 | 3/12/2024 | |
| 8.0.0-preview.3.24105.21 | 301 | 2/13/2024 |