ExpandVectorStore.Qdrant 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ExpandVectorStore.Qdrant --version 1.0.2
                    
NuGet\Install-Package ExpandVectorStore.Qdrant -Version 1.0.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="ExpandVectorStore.Qdrant" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ExpandVectorStore.Qdrant" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="ExpandVectorStore.Qdrant" />
                    
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 ExpandVectorStore.Qdrant --version 1.0.2
                    
#r "nuget: ExpandVectorStore.Qdrant, 1.0.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 ExpandVectorStore.Qdrant@1.0.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=ExpandVectorStore.Qdrant&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=ExpandVectorStore.Qdrant&version=1.0.2
                    
Install as a Cake Tool

ExpandVectorStore.Qdrant

Qdrant vector store provider for Microsoft.Extensions.VectorData.

This package lets you use Qdrant through the standard VectorStore and VectorStoreCollection<TKey, TRecord> abstractions. It is intended for RAG, semantic search, and applications that already use Microsoft.Extensions.AI embeddings.

Features

  • Create, delete, list, and open Qdrant collections.
  • Upsert, retrieve, delete, scroll, and vector search records.
  • Map records from VectorStoreKey, VectorStoreData, and VectorStoreVector attributes.
  • Use dynamic dictionary records with VectorStoreCollectionDefinition.
  • Serialize common payload values, including strings, numbers, booleans, Guid, DateTime, DateTimeOffset, DateOnly, arrays, and lists.
  • Use ReadOnlyMemory<float>, float[], or Embedding<float> for vectors.

Install

dotnet add package ExpandVectorStore.Qdrant

Quick start

using ExpandVectorStore.Qdrant;
using Microsoft.Extensions.VectorData;

var store = new QdrantVectorStore("localhost");
var collection = store.GetCollection<ulong, Product>("products");

await collection.EnsureCollectionExistsAsync();

await collection.UpsertAsync(new Product
{
    Id = 1,
    Name = "Notebook",
    Description = "A compact notebook for meeting notes.",
    Vector = embedding.Vector
});

await foreach (var result in collection.SearchAsync(queryEmbedding.Vector, top: 3))
{
    Console.WriteLine($"{result.Record.Name}: {result.Score}");
}

public sealed class Product
{
    [VectorStoreKey]
    public ulong Id { get; set; }

    [VectorStoreData]
    public string Name { get; set; } = string.Empty;

    [VectorStoreData]
    public string Description { get; set; } = string.Empty;

    [VectorStoreVector(1536, DistanceFunction = DistanceFunction.CosineSimilarity)]
    public ReadOnlyMemory<float> Vector { get; set; }
}

Connection options

Use an existing Qdrant.Client.QdrantClient when your application owns client configuration:

using ExpandVectorStore.Qdrant;
using Qdrant.Client;

var qdrantClient = new QdrantClient("localhost", port: 6334);
var store = new QdrantVectorStore(qdrantClient);

Or let the store create and own the client:

var store = new QdrantVectorStore(
    host: "localhost",
    port: 6334,
    https: false,
    apiKey: "<api-key>");

Current limitations

  • One unnamed vector property per record is supported.
  • LINQ filter translation and vector search filter translation are not implemented yet.
  • Qdrant point keys support Guid, GUID strings, and non-negative integer key types.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.0.3 47 6/25/2026
1.0.2 47 6/25/2026
1.0.1 52 6/25/2026
1.0.0 54 6/24/2026