Aspire.Oracle.EntityFrameworkCore
8.0.0-preview.7.24251.11
Prefix Reserved
See the version list below for details.
dotnet add package Aspire.Oracle.EntityFrameworkCore --version 8.0.0-preview.7.24251.11
NuGet\Install-Package Aspire.Oracle.EntityFrameworkCore -Version 8.0.0-preview.7.24251.11
<PackageReference Include="Aspire.Oracle.EntityFrameworkCore" Version="8.0.0-preview.7.24251.11" />
paket add Aspire.Oracle.EntityFrameworkCore --version 8.0.0-preview.7.24251.11
#r "nuget: Aspire.Oracle.EntityFrameworkCore, 8.0.0-preview.7.24251.11"
// Install Aspire.Oracle.EntityFrameworkCore as a Cake Addin #addin nuget:?package=Aspire.Oracle.EntityFrameworkCore&version=8.0.0-preview.7.24251.11&prerelease // Install Aspire.Oracle.EntityFrameworkCore as a Cake Tool #tool nuget:?package=Aspire.Oracle.EntityFrameworkCore&version=8.0.0-preview.7.24251.11&prerelease
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 .NET Aspire Oracle EntityFrameworkCore library with NuGet:
dotnet add package Aspire.Oracle.EntityFrameworkCore
Usage example
In the Program.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 .NET 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 .NET 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
}
}
}
}
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 Program.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. |
-
net8.0
- Microsoft.Extensions.Configuration.Binder (>= 8.0.1)
- Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore (>= 8.0.4)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- OpenTelemetry.Extensions.Hosting (>= 1.8.1)
- Oracle.EntityFrameworkCore (>= 8.21.140)
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 |
---|---|---|
9.0.0-rc.1.24511.1 | 54 | 10/15/2024 |
8.2.2 | 195 | 10/24/2024 |
8.2.1 | 1,701 | 9/26/2024 |
8.2.0 | 2,418 | 8/29/2024 |
8.1.0 | 427 | 7/23/2024 |
8.0.2 | 936 | 6/28/2024 |
8.0.1 | 1,811 | 5/21/2024 |
8.0.0 | 129 | 5/21/2024 |
8.0.0-preview.7.24251.11 | 79 | 5/7/2024 |
8.0.0-preview.6.24214.1 | 172 | 4/23/2024 |
8.0.0-preview.5.24201.12 | 73 | 4/9/2024 |
8.0.0-preview.4.24156.9 | 168 | 3/12/2024 |
8.0.0-preview.3.24105.21 | 168 | 2/13/2024 |