Aspire.Pomelo.EntityFrameworkCore.MySql
8.0.0
Prefix Reserved
See the version list below for details.
dotnet add package Aspire.Pomelo.EntityFrameworkCore.MySql --version 8.0.0
NuGet\Install-Package Aspire.Pomelo.EntityFrameworkCore.MySql -Version 8.0.0
<PackageReference Include="Aspire.Pomelo.EntityFrameworkCore.MySql" Version="8.0.0" />
paket add Aspire.Pomelo.EntityFrameworkCore.MySql --version 8.0.0
#r "nuget: Aspire.Pomelo.EntityFrameworkCore.MySql, 8.0.0"
// Install Aspire.Pomelo.EntityFrameworkCore.MySql as a Cake Addin #addin nuget:?package=Aspire.Pomelo.EntityFrameworkCore.MySql&version=8.0.0 // Install Aspire.Pomelo.EntityFrameworkCore.MySql as a Cake Tool #tool nuget:?package=Aspire.Pomelo.EntityFrameworkCore.MySql&version=8.0.0
Aspire.Pomelo.EntityFrameworkCore.MySql library
Registers EntityFrameworkCore DbContext in the DI container for connecting MySql database. Enables connection pooling, retries, health check, logging and telemetry.
Getting started
Prerequisites
- MySQL database and connection string for accessing the database.
Install the package
Install the .NET Aspire Pomelo EntityFrameworkCore MySQL library with NuGet:
dotnet add package Aspire.Pomelo.EntityFrameworkCore.MySql
Usage example
In the Program.cs file of your project, call the AddMySqlDbContext
extension method to register a DbContext
for use via the dependency injection container. The method takes a connection name parameter.
builder.AddMySqlDbContext<MyDbContext>("mysqldb");
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 MySql, or register a DbContext
in other ways. In this case call the EnrichMySqlDbContext
extension method, for example:
var connectionString = builder.Configuration.GetConnectionString("mysqldb");
builder.Services.AddDbContextPool<MyDbContext>(dbContextOptionsBuilder => dbContextOptionsBuilder.UseMySql(connectionString, serverVersion));
builder.EnrichMySqlDbContext<MyDbContext>();
Configuration
The .NET Aspire Pomelo EntityFrameworkCore MySQL 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.AddMySqlDbContext()
:
builder.AddMySqlDbContext<MyDbContext>("myConnection");
And then the connection string will be retrieved from the ConnectionStrings
configuration section:
{
"ConnectionStrings": {
"myConnection": "Server=myserver;Database=test"
}
}
The EnrichMySqlDbContext
won't make use of the ConnectionStrings
or ServerVersion
configuration sections since it expects a DbContext
to be registered at the point it is called.
See the ConnectionString documentation for more information on how to format this connection string.
Use configuration providers
The .NET Aspire Pomelo EntityFrameworkCore MySQL component supports Microsoft.Extensions.Configuration.
It loads the PomeloEntityFrameworkCoreMySqlSettings
from configuration by using the Aspire:Pomelo:EntityFrameworkCore:MySql
key.
Example appsettings.json
that configures some of the options:
{
"Aspire": {
"Pomelo": {
"EntityFrameworkCore": {
"MySql": {
"DisableHealthChecks": true,
"DisableTracing": true
}
}
}
}
}
Use inline delegates
Also you can pass the Action<PomeloEntityFrameworkCoreMySqlSettings> configureSettings
delegate to set up some or all the options inline, for example to disable health checks from code:
builder.AddMySqlDbContext<MyDbContext>("mysqldb", settings => settings.DisableHealthChecks = true);
or
builder.EnrichMySqlDbContext<MyDbContext>(settings => settings.DisableHealthChecks = true);
AppHost extensions
In your AppHost project, install the Aspire.Hosting.MySql
library with NuGet:
dotnet add package Aspire.Hosting.MySql
Then, in the Program.cs file of AppHost
, register a MySQL container and consume the connection using the following methods:
var mysqldb = builder.AddMySql("mysql").AddDatabase("mysqldb");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(mysqldb);
The WithReference
method configures a connection in the MyService
project named mysqldb
.
In the Program.cs file of MyService
, the database connection can be consumed using:
builder.AddMySqlDbContext<MyDbContext>("mysqldb");
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)
- MySqlConnector.Logging.Microsoft.Extensions.Logging (>= 2.1.0)
- OpenTelemetry.Extensions.Hosting (>= 1.8.1)
- Polly.Extensions (>= 8.3.1)
- Pomelo.EntityFrameworkCore.MySql (>= 8.0.2)
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 | 55 | 10/15/2024 |
8.2.2 | 326 | 10/24/2024 |
8.2.1 | 1,454 | 9/26/2024 |
8.2.0 | 2,404 | 8/29/2024 |
8.1.0 | 749 | 7/23/2024 |
8.0.2 | 1,384 | 6/28/2024 |
8.0.1 | 1,294 | 5/21/2024 |
8.0.0 | 378 | 5/21/2024 |
8.0.0-preview.7.24251.11 | 150 | 5/7/2024 |
8.0.0-preview.6.24214.1 | 99 | 4/23/2024 |
8.0.0-preview.5.24201.12 | 123 | 4/9/2024 |
8.0.0-preview.4.24156.9 | 96 | 3/12/2024 |
8.0.0-preview.3.24105.21 | 101 | 2/13/2024 |