Aspire.Microsoft.EntityFrameworkCore.Cosmos 8.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Aspire.Microsoft.EntityFrameworkCore.Cosmos --version 8.0.1
NuGet\Install-Package Aspire.Microsoft.EntityFrameworkCore.Cosmos -Version 8.0.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.Cosmos" Version="8.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspire.Microsoft.EntityFrameworkCore.Cosmos --version 8.0.1
#r "nuget: Aspire.Microsoft.EntityFrameworkCore.Cosmos, 8.0.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.Cosmos as a Cake Addin
#addin nuget:?package=Aspire.Microsoft.EntityFrameworkCore.Cosmos&version=8.0.1

// Install Aspire.Microsoft.EntityFrameworkCore.Cosmos as a Cake Tool
#tool nuget:?package=Aspire.Microsoft.EntityFrameworkCore.Cosmos&version=8.0.1

Aspire.Microsoft.EntityFrameworkCore.Cosmos library

Registers EntityFrameworkCore DbContext in the DI container for connecting to Azure Cosmos DB. Enables connection pooling, logging and telemetry.

Getting started

Prerequisites

  • CosmosDB database and connection string for accessing the database.

Install the package

Install the .NET Aspire Microsoft EntityFrameworkCore Cosmos library with NuGet:

dotnet add package Aspire.Microsoft.EntityFrameworkCore.Cosmos

Usage example

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

builder.AddCosmosDbContext<MyDbContext>("cosmosdb", "mydb");

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

var connectionString = builder.Configuration.GetConnectionString("mydb");
builder.Services.AddDbContextPool<MyDbContext>(dbContextOptionsBuilder => dbContextOptionsBuilder.UseCosmos(connectionString, "mydb"));
builder.EnrichCosmosDbContext<MyDbContext>();

Configuration

The .NET Aspire Microsoft EntityFrameworkCore Cosmos 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.AddCosmosDbContext():

builder.AddCosmosDbContext<MyDbContext>("myConnection", "mydb");

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

{
  "ConnectionStrings": {
    "myConnection": "AccountEndpoint=https://{account_name}.documents.azure.com:443/;AccountKey={account_key};"
  }
}

The EnrichCosmosDbContext won't make use of the ConnectionStrings, Region and AccountEndpoint configuration section since it expects a DbContext to be registered at the point it is called.

See the ConnectionString documentation for more information.

Use configuration providers

The .NET Aspire Microsoft EntityFrameworkCore Cosmos component supports Microsoft.Extensions.Configuration. It loads the EntityFrameworkCoreCosmosSettings from configuration by using the Aspire:Microsaoft:EntityFrameworkCore:Cosmos key. Example appsettings.json that configures some of the options:

{
  "Aspire": {
    "Microsoft": {
      "EntityFrameworkCore": {
        "Cosmos": {
          "DisableTracing": true
        }
      }
    }
  }
}

Use inline delegates

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

    builder.AddCosmosDbContext<MyDbContext>("cosmosdb", "mydb", settings => settings.DisableTracing = true);

or

    builder.EnrichCosmosDbContext<MyDbContext>(settings => settings.DisableTracing = true);

AppHost extensions

In your AppHost project, install the Aspire Azure CosmosDB Hosting library with NuGet:

dotnet add package Aspire.Hosting.Azure.CosmosDB

Then, in the Program.cs file of AppHost, add a Cosmos DB connection and consume the connection using the following methods:

var cosmosdb = builder.AddAzureCosmosDB("cdb").AddDatabase("cosmosdb");

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

The AddAzureCosmosDB method will read connection information from the AppHost's configuration (for example, from "user secrets") under the ConnectionStrings:cosmosdb config key. The WithReference method passes that connection information into a connection string named cosmosdb in the MyService project. In the Program.cs file of MyService, the connection can be consumed using:

builder.AddCosmosDbContext<MyDbContext>("cosmosdb", "cosmosdb");

Emulator usage

Aspire supports the usage of the Azure Cosmos DB emulator to use the emulator, add the following to your AppHost project:

// AppHost
var cosmosdb = builder.AddAzureCosmosDB("cosmos").RunAsEmulator();

When the AppHost starts up a local container running the Azure CosmosDB will also be started:

// Service code
builder.AddCosmosDbContext<MyDbContext>("cosmos", "mydb");

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.1 0 5/21/2024
8.0.0 0 5/21/2024
8.0.0-preview.7.24251.11 249 5/7/2024
8.0.0-preview.6.24214.1 484 4/23/2024
8.0.0-preview.5.24201.12 249 4/9/2024
8.0.0-preview.4.24156.9 538 3/12/2024
8.0.0-preview.3.24105.21 283 2/13/2024
8.0.0-preview.2.23619.3 530 12/20/2023
8.0.0-preview.1.23557.2 295 11/14/2023