Skip to main content

PostrgreSqlFloatConverter

Assembly: ServiceStack.OrmLite.PostgreSQL.dll
View Source
Declaration
public class PostrgreSqlFloatConverter : FloatConverter, IOrmLiteConverter

Properties

ColumnDefinition

View Source
Declaration
public override string ColumnDefinition { get; }

Inherited Properties

ColumnDefinition

View Source
Declaration
public override string ColumnDefinition { get; }

DbType

View Source
Declaration
public override DbType DbType { get; }

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

ToQuotedString(Type, Object)

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

System.String

Parameters
TypeName
TypefieldType
System.Objectvalue

Implements