Aspire.Pomelo.EntityFrameworkCore.MySql 8.0.0-preview.6.24214.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Aspire.Pomelo.EntityFrameworkCore.MySql.
dotnet add package Aspire.Pomelo.EntityFrameworkCore.MySql --version 8.0.0-preview.6.24214.1
NuGet\Install-Package Aspire.Pomelo.EntityFrameworkCore.MySql -Version 8.0.0-preview.6.24214.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspire.Pomelo.EntityFrameworkCore.MySql" Version="8.0.0-preview.6.24214.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspire.Pomelo.EntityFrameworkCore.MySql --version 8.0.0-preview.6.24214.1
#r "nuget: Aspire.Pomelo.EntityFrameworkCore.MySql, 8.0.0-preview.6.24214.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aspire.Pomelo.EntityFrameworkCore.MySql as a Cake Addin
#addin nuget:?package=Aspire.Pomelo.EntityFrameworkCore.MySql&version=8.0.0-preview.6.24214.1&prerelease

// Install Aspire.Pomelo.EntityFrameworkCore.MySql as a Cake Tool
#tool nuget:?package=Aspire.Pomelo.EntityFrameworkCore.MySql&version=8.0.0-preview.6.24214.1&prerelease

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": {
          "HealthChecks": false,
          "Tracing": false
        }
      }
    }
  }
}

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.HealthChecks = false);

or

    builder.EnrichMySqlDbContext<MyDbContext>(settings => settings.HealthChecks = false);

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

Feedback & contributing

https://github.com/dotnet/aspire

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
8.0.0-preview.6.24214.1 59 4/23/2024
8.0.0-preview.5.24201.12 96 4/9/2024
8.0.0-preview.4.24156.9 83 3/12/2024
8.0.0-preview.3.24105.21 85 2/13/2024