Aspire.Microsoft.EntityFrameworkCore.SqlServer 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.Microsoft.EntityFrameworkCore.SqlServer.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Aspire.Microsoft.EntityFrameworkCore.SqlServer --version 8.0.0-preview.6.24214.1
NuGet\Install-Package Aspire.Microsoft.EntityFrameworkCore.SqlServer -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.Microsoft.EntityFrameworkCore.SqlServer" 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.Microsoft.EntityFrameworkCore.SqlServer --version 8.0.0-preview.6.24214.1
#r "nuget: Aspire.Microsoft.EntityFrameworkCore.SqlServer, 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.Microsoft.EntityFrameworkCore.SqlServer as a Cake Addin
#addin nuget:?package=Aspire.Microsoft.EntityFrameworkCore.SqlServer&version=8.0.0-preview.6.24214.1&prerelease

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

Aspire.Microsoft.EntityFrameworkCore.SqlServer library

Registers EntityFrameworkCore DbContext service for connecting Azure SQL, MS SQL server database. Enables connection pooling, retries, health check, logging and telemetry.

Getting started

Prerequisites

  • Azure SQL or MS SQL server database and connection string for accessing the database.

Install the package

Install the .NET Aspire SQL Server EntityFrameworkCore SqlClient library with NuGet:

dotnet add package Aspire.Microsoft.EntityFrameworkCore.SqlServer

Usage example

In the Program.cs file of your project, call the AddSqlServerDbContext extension method to register a DbContext for use via the dependency injection container. The method takes a connection name parameter.

builder.AddSqlServerDbContext<MyDbContext>("sqldata");

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 Sql Server, or register a DbContext in other ways. In this case call the EnrichSqlServerDbContext extension method, for example:

var connectionString = builder.Configuration.GetConnectionString("catalogdb");
builder.Services.AddDbContextPool<CatalogDbContext>(dbContextOptionsBuilder => dbContextOptionsBuilder.UseSqlServer(connectionString));
builder.EnrichSqlServerDbContext<CatalogDbContext>();

Configuration

The .NET Aspire SQL Server EntityFrameworkCore SqlClient component provides multiple options to configure the SQL 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.AddSqlServerDbContext<TContext>():

builder.AddSqlServerDbContext<MyDbContext>("myConnection");

And then the connection string will be retrieved from the ConnectionStrings configuration section:

{
  "ConnectionStrings": {
    "myConnection": "Data Source=myserver;Initial Catalog=master"
  }
}

The EnrichSqlServerDbContext 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 ConnectionString documentation for more information on how to format this connection string.

Use configuration providers

The .NET Aspire SQL Server EntityFrameworkCore SqlClient component supports Microsoft.Extensions.Configuration. It loads the MicrosoftEntityFrameworkCoreSqlServerSettings from configuration by using the Aspire:Microsoft:EntityFrameworkCore:SqlServer key. Example appsettings.json that configures some of the options:

{
  "Aspire": {
    "Microsoft": {
      "EntityFrameworkCore": {
        "SqlServer": {
          "HealthChecks": false,
          "Tracing": false
        }
      }
    }
  }
}

Use inline delegates

Also you can pass the Action<MicrosoftEntityFrameworkCoreSqlServerSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:

    builder.AddSqlServerDbContext<MyDbContext>("sqldata", settings => settings.HealthChecks = false);

or

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

AppHost extensions

In your AppHost project, install the Aspire.Hosting.SqlServer library with NuGet:

dotnet add package Aspire.Hosting.SqlServer

Then, in the Program.cs file of AppHost, register a SqlServer database and consume the connection using the following methods:

var sql = builder.AddSqlServer("sql").AddDatabase("sqldata");

var myService = builder.AddProject<Projects.MyService>()
                       .WithReference(sql);

The WithReference method configures a connection in the MyService project named sqldata. In the Program.cs file of MyService, the sql connection can be consumed using:

builder.AddSqlServerDbContext<MyDbContext>("sqldata");

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 (1)

Showing the top 1 popular GitHub repositories that depend on Aspire.Microsoft.EntityFrameworkCore.SqlServer:

Repository Stars
dotnet/aspire-samples
Version Downloads Last updated
8.0.0-preview.7.24251.11 606 5/7/2024
8.0.0-preview.6.24214.1 1,816 4/23/2024
8.0.0-preview.5.24201.12 2,881 4/9/2024
8.0.0-preview.4.24156.9 3,409 3/12/2024
8.0.0-preview.3.24105.21 5,148 2/13/2024
8.0.0-preview.2.23619.3 4,847 12/20/2023
8.0.0-preview.1.23557.2 1,849 11/14/2023