VectorStoreRecordDataProperty Class
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.
Defines a data property on a vector store record.
public sealed class VectorStoreRecordDataProperty : Microsoft.SemanticKernel.Data.VectorStoreRecordProperty
type VectorStoreRecordDataProperty = class
inherit VectorStoreRecordProperty
Public NotInheritable Class VectorStoreRecordDataProperty
Inherits VectorStoreRecordProperty
- Inheritance
Remarks
The characteristics defined here will influence how the property is treated by the vector store.
Constructors
VectorStoreRecordDataProperty(String, Type) |
Initializes a new instance of the VectorStoreRecordDataProperty class. |
VectorStoreRecordDataProperty(VectorStoreRecordDataProperty) |
Initializes a new instance of the VectorStoreRecordDataProperty class by cloning the given source. |
Properties
DataModelPropertyName |
Gets or sets the name of the property on the data model. (Inherited from VectorStoreRecordProperty) |
IsFilterable |
Gets or sets a value indicating whether this data property is filterable. |
IsFullTextSearchable |
Gets or sets a value indicating whether this data property is full text searchable. |
PropertyType |
Gets or sets the type of the property. (Inherited from VectorStoreRecordProperty) |
StoragePropertyName |
Gets or sets an optional name to use for the property in storage, if different from the property name. E.g. the property name might be "MyProperty" but the storage name might be "my_property". This property will only be respected by implementations that do not support a well known serialization mechanism like JSON, in which case the attributes used by that seriallization system will be used. (Inherited from VectorStoreRecordProperty) |