Aspire.Microsoft.EntityFrameworkCore.Cosmos 8.0.0-preview.1.23557.2

Prefix Reserved
Additional Details

This version is out of support and is no longer maintained. Please upgrade to the latest version. See our support policy for details: https://aka.ms/dotent/aspire/support

This is a prerelease version of Aspire.Microsoft.EntityFrameworkCore.Cosmos.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspire.Microsoft.EntityFrameworkCore.Cosmos --version 8.0.0-preview.1.23557.2
                    
NuGet\Install-Package Aspire.Microsoft.EntityFrameworkCore.Cosmos -Version 8.0.0-preview.1.23557.2
                    
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.0-preview.1.23557.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aspire.Microsoft.EntityFrameworkCore.Cosmos" Version="8.0.0-preview.1.23557.2" />
                    
Directory.Packages.props
<PackageReference Include="Aspire.Microsoft.EntityFrameworkCore.Cosmos" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aspire.Microsoft.EntityFrameworkCore.Cosmos --version 8.0.0-preview.1.23557.2
                    
#r "nuget: Aspire.Microsoft.EntityFrameworkCore.Cosmos, 8.0.0-preview.1.23557.2"
                    
#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.
#:package Aspire.Microsoft.EntityFrameworkCore.Cosmos@8.0.0-preview.1.23557.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Aspire.Microsoft.EntityFrameworkCore.Cosmos&version=8.0.0-preview.1.23557.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Aspire.Microsoft.EntityFrameworkCore.Cosmos&version=8.0.0-preview.1.23557.2&prerelease
                    
Install as a Cake Tool

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][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 a connection name parameter.

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

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;
}

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");

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};"
  }
}

See the ConnectionString documentation for more information.

Use configuration providers

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

{
  "Aspire": {
    "Microsoft": {
      "EntityFrameworkCore": {
        "Cosmos": {
          "DbContextPooling": true,
          "Tracing": false
        }
      }
    }
  }
}

Use inline delegates

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

    builder.AddCosmosDbContext<MyDbContext>("cosmosdb", settings => settings.Tracing = false);

AppHost extensions

In your AppHost project, 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 WithReference method configures a connection in the MyService project named cosmosdb. In the Program.cs file of MyService, the database connection can be consumed using:

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

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.  net9.0 was computed.  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 was computed.  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. 
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.Cosmos:

Repository Stars
davidfowl/aspire-ai-chat-demo
Aspire AI Chat is a full-stack chat sample that combines modern technologies to deliver a ChatGPT-like experience.
Version Downloads Last Updated
9.3.1 1,382 6/10/2025
9.3.0 3,675 5/19/2025
9.2.1 1,454 4/24/2025 9.2.1 is deprecated because it is no longer maintained.
9.2.0 1,215 4/10/2025 9.2.0 is deprecated because it is no longer maintained.
9.1.0 5,477 2/25/2025 9.1.0 is deprecated because it is no longer maintained.
9.0.0 9,286 11/12/2024 9.0.0 is deprecated because it is no longer maintained.
9.0.0-rc.1.24511.1 523 10/15/2024 9.0.0-rc.1.24511.1 is deprecated because it is no longer maintained.
8.2.2 4,680 10/24/2024 8.2.2 is deprecated because it is no longer maintained.
8.2.1 6,675 9/26/2024 8.2.1 is deprecated because it is no longer maintained.
8.2.0 4,587 8/29/2024 8.2.0 is deprecated because it is no longer maintained.
8.1.0 2,537 7/23/2024 8.1.0 is deprecated because it is no longer maintained.
8.0.2 1,075 6/28/2024 8.0.2 is deprecated because it is no longer maintained.
8.0.1 9,273 5/21/2024 8.0.1 is deprecated because it is no longer maintained.
8.0.0 315 5/21/2024 8.0.0 is deprecated because it is no longer maintained.
8.0.0-preview.7.24251.11 472 5/7/2024 8.0.0-preview.7.24251.11 is deprecated because it is no longer maintained.
8.0.0-preview.6.24214.1 610 4/23/2024 8.0.0-preview.6.24214.1 is deprecated because it is no longer maintained.
8.0.0-preview.5.24201.12 371 4/9/2024 8.0.0-preview.5.24201.12 is deprecated because it is no longer maintained.
8.0.0-preview.4.24156.9 666 3/12/2024 8.0.0-preview.4.24156.9 is deprecated because it is no longer maintained.
8.0.0-preview.3.24105.21 414 2/13/2024 8.0.0-preview.3.24105.21 is deprecated because it is no longer maintained.
8.0.0-preview.2.23619.3 834 12/20/2023 8.0.0-preview.2.23619.3 is deprecated because it is no longer maintained.
8.0.0-preview.1.23557.2 421 11/14/2023 8.0.0-preview.1.23557.2 is deprecated because it is no longer maintained.