GetAsync
GetAsync
methods retrieve a single record or a batch of records from the vector store. It does not guarantee that the collection exists and returns null if the record is not found.
Overload List
- GetAsync(TKey , RecordRetrieveOptions?, CancellationToken)
This method retrieves a single record from the vector store. It does not guarantee that the collection exists and returns null if the record is not found.
- GetAsync(IEnumerable<TKey>, RecordRetrieveOptions?, CancellationToken)
This method retrieves a batch of records from the vector store. It does not guarantee that the collection exists and returns null if the record is not found.
- GetAsync(Expression<Func<TRecord, bool>>, int, FilteredRecordRetrievalOptions<TRecord>?, CancellationToken)
This method retrieves from the vector store records matching a filter expression. It does not guarantee the existence of the collection.