Try our conversational search powered by Generative AI!

Interface IPropertyValueConverter<T>

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<in T> : IPropertyValueConverter where T : PropertyData
Type Parameters
Name Description
T

Methods

GetValue(T, PropertyValueConverterContext)

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

Declaration
PropertyDataRecord GetValue(T property, PropertyValueConverterContext context)
Parameters
Type Name Description
T 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(T, PropertyDataRecord, PropertyValueConverterContext)

Assigns the database value to the property.

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

The property to which the value should be assigned to.

PropertyDataRecord dataRecord

The values extracted from the database.

PropertyValueConverterContext context

Extension Methods