-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Closed as not planned
Labels
.NETIssue or Pull requests regarding .NET codeIssue or Pull requests regarding .NET codeNextSemestermsft.ext.vectordataRelated to Microsoft.Extensions.VectorDataRelated to Microsoft.Extensions.VectorData
Description
In my scenarios, schemas are always built programmatically based on configuration or user input. This means collections cannot be strongly typed to a specific class.
Currently, I use:
→ var collection = vectorStore.GetCollection<ulong, object>("name", definition);
Setting TRecord to object seems to work but feels hacky. A class extension to abstract/hide this would improve usability, something like this:
→ var collection = vectorStore.GetCollection("name", definition);
Metadata
Metadata
Labels
.NETIssue or Pull requests regarding .NET codeIssue or Pull requests regarding .NET codeNextSemestermsft.ext.vectordataRelated to Microsoft.Extensions.VectorDataRelated to Microsoft.Extensions.VectorData
Type
Projects
Status
Backlog