Share via


QdrantVectorStoreRecordCollectionOptions<TRecord>.PointStructCustomMapper Property

Definition

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.

Applies to