Try our conversational search powered by Generative AI!

Interface IPropertyValueConverter

This class supports the EPiServer infrastructure and is not intended to be used directly from your code.

Namespace: EPiServer.DataAccess
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public interface IPropertyValueConverter

Methods

GetValue(PropertyData, PropertyValueConverterContext)

Gets the value from the property in a database friendly format.

Declaration
PropertyDataRecord GetValue(PropertyData property, PropertyValueConverterContext context)
Parameters
Type Name Description
PropertyData property

The property from where the value should be retrieved from.

PropertyValueConverterContext context
Returns
Type Description
PropertyDataRecord

A record with an assigned database friendly value.

SetValue(PropertyData, PropertyDataRecord, PropertyValueConverterContext)

Assigns the database value to the property.

Declaration
void SetValue(PropertyData property, PropertyDataRecord dataRecord, PropertyValueConverterContext context)
Parameters
Type Name Description
PropertyData property

The property to which the value should be assigned to.

PropertyDataRecord dataRecord

The values extracted from the database.

PropertyValueConverterContext context

Extension Methods