QdrantVectorStoreRecordCollectionOptions<TRecord>.PointStructCustomMapper 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 or sets an optional custom mapper to use when converting between the data model and the qdrant point.
public Microsoft.SemanticKernel.Data.IVectorStoreRecordMapper<TRecord,Qdrant.Client.Grpc.PointStruct>? PointStructCustomMapper { get; init; }
member this.PointStructCustomMapper : Microsoft.SemanticKernel.Data.IVectorStoreRecordMapper<'Record, Qdrant.Client.Grpc.PointStruct (requires 'Record : null)> with get, set
Public Property PointStructCustomMapper As IVectorStoreRecordMapper(Of TRecord, PointStruct)
Property Value
IVectorStoreRecordMapper<TRecord,Qdrant.Client.Grpc.PointStruct>
Remarks
If not set, a default mapper that uses json as an intermediary to allow automatic mapping to a wide variety of types will be used.