Aspire.MySqlConnector
13.1.0
Prefix Reserved
dotnet add package Aspire.MySqlConnector --version 13.1.0
NuGet\Install-Package Aspire.MySqlConnector -Version 13.1.0
<PackageReference Include="Aspire.MySqlConnector" Version="13.1.0" />
<PackageVersion Include="Aspire.MySqlConnector" Version="13.1.0" />
<PackageReference Include="Aspire.MySqlConnector" />
paket add Aspire.MySqlConnector --version 13.1.0
#r "nuget: Aspire.MySqlConnector, 13.1.0"
#:package [email protected]
#addin nuget:?package=Aspire.MySqlConnector&version=13.1.0
#tool nuget:?package=Aspire.MySqlConnector&version=13.1.0
Aspire.MySqlConnector library
Registers MySqlDataSource in the DI container for connecting MySQL database. Enables corresponding health check, metrics, logging and telemetry.
Getting started
Prerequisites
- MySQL database and connection string for accessing the database.
Install the package
Install the Aspire MySQL library with NuGet:
dotnet add package Aspire.MySqlConnector
Usage example
In the AppHost.cs file of your project, call the AddMyDataSource extension method to register a MySqlDataSource for use via the dependency injection container. The method takes a connection name parameter.
builder.AddMySqlDataSource("server=mysql;user id=myuser;password=mypass");
You can then retrieve a MySqlConnection instance using dependency injection. For example, to retrieve a connection from a Web API controller:
private readonly MySqlConnection _connection;
public ProductsController(MySqlConnection connection)
{
_connection = connection;
}
Configuration
The Aspire 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.AddMySqlDataSource():
builder.AddMySqlDataSource("myConnection");
And then the connection string will be retrieved from the ConnectionStrings configuration section:
{
"ConnectionStrings": {
"myConnection": "Server=mysql;Database=test"
}
}
See the ConnectionString documentation for more information on how to format this connection string.
Use configuration providers
The Aspire MySQL component supports Microsoft.Extensions.Configuration. It loads the MySqlConnectorSettings from configuration by using the Aspire:MySqlConnector key. Example appsettings.json that configures some of the options:
{
"Aspire": {
"MySqlConnector": {
"DisableHealthChecks": true,
"DisableTracing": true
}
}
}
Use inline delegates
Also you can pass the Action<MySqlConnectorSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:
builder.AddMySqlDataSource("mysql", 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 AppHost.cs file of AppHost, register a MySQL database 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.AddMySqlDataSource("mysqldb");
Additional documentation
- https://mysqlconnector.net/tutorials/basic-api/
- https://github.com/dotnet/aspire/tree/main/src/Components/README.md
Feedback & contributing
https://github.com/dotnet/aspire
| 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 is compatible. 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 is compatible. 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. |
-
net10.0
- AspNetCore.HealthChecks.MySql (>= 9.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.1)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Options (>= 10.0.1)
- Microsoft.Extensions.Primitives (>= 10.0.1)
- MySqlConnector.DependencyInjection (>= 2.4.0)
- OpenTelemetry.Extensions.Hosting (>= 1.14.0)
-
net8.0
- AspNetCore.HealthChecks.MySql (>= 9.0.0)
- 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.Hosting.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.3)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- MySqlConnector.DependencyInjection (>= 2.4.0)
- OpenTelemetry.Extensions.Hosting (>= 1.14.0)
-
net9.0
- AspNetCore.HealthChecks.MySql (>= 9.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.11)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 9.0.11)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Options (>= 9.0.11)
- Microsoft.Extensions.Primitives (>= 9.0.11)
- MySqlConnector.DependencyInjection (>= 2.4.0)
- OpenTelemetry.Extensions.Hosting (>= 1.14.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Aspire.MySqlConnector:
| Package | Downloads |
|---|---|
|
NextDepartures.Storage.MySql.Aspire
NextDepartures is a .NET Library that queries GTFS (General Transit Feed Specification) data sets stored locally, or in a database such as MySQL, PostgreSQL, SQLite or SQL Server. The library will work with any well-formed GTFS data set. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Aspire.MySqlConnector:
| Repository | Stars |
|---|---|
|
dotnet/aspire-samples
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 13.1.0 | 806 | 12/17/2025 | |
| 13.0.2 | 56,134 | 12/4/2025 | |
| 13.0.1 | 57,040 | 11/26/2025 | |
| 13.0.0 | 56,903 | 11/11/2025 | |
| 9.5.2 | 56,957 | 10/23/2025 | |
| 9.5.1 | 56,944 | 10/3/2025 | |
| 9.5.0 | 57,430 | 9/25/2025 | |
| 9.4.2 | 58,034 | 9/2/2025 | |
| 9.4.1 | 57,610 | 8/12/2025 | |
| 9.4.0 | 57,095 | 7/29/2025 | |
| 9.3.1 | 57,378 | 6/10/2025 | |
| 9.3.0 | 58,514 | 5/19/2025 | |
| 9.2.1 | 57,923 | 4/24/2025 | |
| 9.2.0 | 57,539 | 4/10/2025 | |
| 9.1.0 | 58,286 | 2/25/2025 | |
| 9.0.0 | 64,910 | 11/12/2024 | |
| 9.0.0-rc.1.24511.1 | 844 | 10/15/2024 | |
| 8.2.2 | 56,491 | 10/24/2024 | |
| 8.2.1 | 56,926 | 9/26/2024 | |
| 8.2.0 | 60,863 | 8/29/2024 | |
| 8.1.0 | 59,537 | 7/23/2024 | |
| 8.0.2 | 56,350 | 6/28/2024 | |
| 8.0.1 | 57,775 | 5/21/2024 | |
| 8.0.0 | 56,650 | 5/21/2024 | |
| 8.0.0-preview.7.24251.11 | 444 | 5/7/2024 | |
| 8.0.0-preview.6.24214.1 | 528 | 4/23/2024 | |
| 8.0.0-preview.5.24201.12 | 1,627 | 4/9/2024 | |
| 8.0.0-preview.4.24156.9 | 454 | 3/12/2024 | |
| 8.0.0-preview.3.24105.21 | 514 | 2/13/2024 | |
| 8.0.0-preview.2.23619.3 | 1,848 | 12/20/2023 |