Gets or sets a type used for converting between the database and CLR representations of the field. The type must implement IFieldConverter.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public Type ConverterType { get; set; }
Visual Basic (Declaration)
Public Property ConverterType As Type

Remarks

A convenient way to implement IFieldConverter is to derive from FieldConverter<(Of <(TDatabase, TModel>)>).

See Also