Table of Contents

Class SqliteDataType

Namespace
LfrlAnvil.Sqlite
Assembly
LfrlAnvil.Sqlite.dll

Represents a DB data type.

public sealed class SqliteDataType : Enumeration<SqliteDataType, SqliteType>, IEquatable<SqliteDataType>, IComparable<SqliteDataType>, IComparable, ISqlDataType
Inheritance
SqliteDataType
Implements
Inherited Members

Remarks

SqliteDialect implementation.

Fields

Any

Represents the ANY type.

public static readonly SqliteDataType Any

Field Value

SqliteDataType

Blob

Represents the BLOB type.

public static readonly SqliteDataType Blob

Field Value

SqliteDataType

Integer

Represents the INTEGER type.

public static readonly SqliteDataType Integer

Field Value

SqliteDataType

Real

Represents the REAL type.

public static readonly SqliteDataType Real

Field Value

SqliteDataType

Text

Represents the TEXT type.

public static readonly SqliteDataType Text

Field Value

SqliteDataType

Properties

DbType

DbType of this data type.

public DbType DbType { get; }

Property Value

DbType

Dialect

Specifies the SQL dialect of this data type.

public SqlDialect Dialect { get; }

Property Value

SqlDialect