Skip to main content

PostgreSqlCharArrayConverter

Assembly: ServiceStack.OrmLite.PostgreSQL.dll
View Source
Declaration
public class PostgreSqlCharArrayConverter : CharArrayConverter, IOrmLiteConverter, IHasColumnDefinitionLength

Properties

ColumnDefinition

View Source
Declaration
public override string ColumnDefinition { get; }

Methods

GetColumnDefinition(Nullable<Int32>)

View Source
Declaration
public override string GetColumnDefinition(int? stringLength)
Returns

System.String

Parameters
TypeName
System.Nullable<System.Int32>stringLength

Inherited Methods

FromDbValue(Type, Object)

View Source
Declaration
public override object FromDbValue(Type fieldType, object value)
Returns

System.Object

Parameters
TypeName
TypefieldType
System.Objectvalue

ToDbValue(Type, Object)

View Source
Declaration
public override object ToDbValue(Type fieldType, object value)
Returns

System.Object

Parameters
TypeName
TypefieldType
System.Objectvalue

Implements