Aspire.Milvus.Client
13.1.0-preview.1.25616.3
Prefix Reserved
dotnet add package Aspire.Milvus.Client --version 13.1.0-preview.1.25616.3
NuGet\Install-Package Aspire.Milvus.Client -Version 13.1.0-preview.1.25616.3
<PackageReference Include="Aspire.Milvus.Client" Version="13.1.0-preview.1.25616.3" />
<PackageVersion Include="Aspire.Milvus.Client" Version="13.1.0-preview.1.25616.3" />
<PackageReference Include="Aspire.Milvus.Client" />
paket add Aspire.Milvus.Client --version 13.1.0-preview.1.25616.3
#r "nuget: Aspire.Milvus.Client, 13.1.0-preview.1.25616.3"
#:package Aspire.Milvus.Client@13.1.0-preview.1.25616.3
#addin nuget:?package=Aspire.Milvus.Client&version=13.1.0-preview.1.25616.3&prerelease
#tool nuget:?package=Aspire.Milvus.Client&version=13.1.0-preview.1.25616.3&prerelease
Aspire.Milvus.Client library
Registers a MilvusClient in the DI container for connecting to a Milvus server.
Getting started
Prerequisites
- Milvus server and connection string for accessing the server API endpoint.
Install the package
Install the Aspire Milvus Client library with NuGet:
dotnet add package Aspire.Milvus.Client
Usage example
In the AppHost.cs file of your project, call the AddMilvusClient extension method to register a MilvusClient for use via the dependency injection container. The method takes a connection name parameter.
builder.AddMilvusClient("milvus");
Configuration
The Aspire Milvus Client component provides multiple options to configure the server 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.AddMilvusClient():
builder.AddMilvusClient("milvus");
And then the connection string will be retrieved from the ConnectionStrings configuration section:
{
"ConnectionStrings": {
"milvus": "Endpoint=http://localhost:19530/;Key=root:123456!@#$%"
}
}
By default the MilvusClient uses the gRPC API endpoint.
Use configuration providers
The Aspire Milvus Client component supports Microsoft.Extensions.Configuration. It loads the MilvusSettings from configuration by using the Aspire:Milvus:Client key. Example appsettings.json that configures some of the options:
{
"Aspire": {
"Milvus": {
"Client": {
"Key": "root:123456!@#$%"
}
}
}
}
Use inline delegates
Also you can pass the Action<MilvusSettings> configureSettings delegate to set up some or all the options inline, for example to set the API key from code:
builder.AddMilvusClient("milvus", settings => settings.Key = "root:12345!@#$%");
AppHost extensions
In your AppHost project, install the Aspire.Hosting.Milvus library with NuGet:
dotnet add package Aspire.Hosting.Milvus
Then, in the AppHost.cs file of AppHost, register a Milvus server and consume the connection using the following methods:
var milvus = builder.AddMilvus("milvus");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(milvus);
The WithReference method configures a connection in the MyService project named milvus. In the Program.cs file of MyService, the Milvus connection can be consumed using:
builder.AddMilvusClient("milvus");
Additional documentation
- https://github.com/milvus-io/milvus-sdk-csharp
- https://github.com/dotnet/aspire/tree/main/src/Components/README.md
Feedback & contributing
https://github.com/dotnet/aspire
*Milvus and the Milvus logo are used with permission from the Milvus project. All rights reserved by LF AI & Data foundation.
| 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
- Google.Protobuf (>= 3.33.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)
- Milvus.Client (>= 2.3.0-preview.1)
-
net8.0
- Google.Protobuf (>= 3.33.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)
- Milvus.Client (>= 2.3.0-preview.1)
-
net9.0
- Google.Protobuf (>= 3.33.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)
- Milvus.Client (>= 2.3.0-preview.1)
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 | |
|---|---|---|---|
| 13.1.0-preview.1.25616.3 | 292 | 12/17/2025 | |
| 13.0.2-preview.1.25603.5 | 234 | 12/4/2025 | |
| 13.0.1-preview.1.25575.3 | 352 | 11/26/2025 | |
| 13.0.0-preview.1.25560.3 | 441 | 11/11/2025 | |
| 9.5.2-preview.1.25522.3 | 349 | 10/23/2025 | |
| 9.5.1-preview.1.25502.11 | 297 | 10/3/2025 | |
| 9.5.0-preview.1.25474.7 | 351 | 9/25/2025 | |
| 9.4.2-preview.1.25428.12 | 355 | 9/2/2025 | |
| 9.4.1-preview.1.25408.4 | 383 | 8/12/2025 | |
| 9.4.0-preview.1.25378.8 | 321 | 7/29/2025 | |
| 9.3.1-preview.1.25305.6 | 535 | 6/10/2025 | |
| 9.3.0-preview.1.25265.20 | 372 | 5/19/2025 | |
| 9.2.1-preview.1.25222.1 | 280 | 4/24/2025 | |
| 9.2.0-preview.1.25209.2 | 290 | 4/10/2025 | |
| 9.1.0-preview.1.25121.10 | 217 | 2/25/2025 | |
| 9.0.0-preview.5.24551.3 | 289 | 11/12/2024 | |
| 9.0.0-preview.4.24511.1 | 209 | 10/15/2024 | |
| 8.2.2-preview.1.24521.5 | 257 | 10/24/2024 | |
| 8.2.1-preview.1.24473.4 | 234 | 9/26/2024 | |
| 8.2.0-preview.1.24428.5 | 196 | 8/29/2024 | |
| 8.1.0-preview.1.24373.2 | 249 | 7/23/2024 |