VectorStoreWriter<T>.VectorStoreCollection Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the underlying VectorStoreCollection<TKey,TRecord> used to store the chunks.
public:
property Microsoft::Extensions::VectorData::VectorStoreCollection<System::Object ^, System::Collections::Generic::Dictionary<System::String ^, System::Object ^> ^> ^ VectorStoreCollection { Microsoft::Extensions::VectorData::VectorStoreCollection<System::Object ^, System::Collections::Generic::Dictionary<System::String ^, System::Object ^> ^> ^ get(); };
public Microsoft.Extensions.VectorData.VectorStoreCollection<object,System.Collections.Generic.Dictionary<string,object?>> VectorStoreCollection { get; }
member this.VectorStoreCollection : Microsoft.Extensions.VectorData.VectorStoreCollection<obj, System.Collections.Generic.Dictionary<string, obj>>
Public ReadOnly Property VectorStoreCollection As VectorStoreCollection(Of Object, Dictionary(Of String, Object))
Property Value
Exceptions
The collection has not been initialized yet. Call WriteAsync(IAsyncEnumerable<IngestionChunk<T>>, CancellationToken) first.
Remarks
The collection is initialized when WriteAsync(IAsyncEnumerable<IngestionChunk<T>>, CancellationToken) is called for the first time.