EaToSql


DataType

The data types defined in the model, especially those that require information in addition to just their type name (e.g. decimal has a scale, char has a length, 'int' may be an auto-number).

Union Cases

Union CaseDescription
Char(length)
Signature: int
Decimal(precision,scale)
Signature: int * int
Int
Signature:
IntAuto
Signature:
NVarChar(length)
Signature: int
SQLT(name)
Signature: SqlDataTypeName
VarChar(length)
Signature: int

Instance members

Instance memberDescription
ToString()
Signature: unit -> string

Static members

Static memberDescription
Create(...)
Signature: (name:SqlDataTypeName * isAutoNum:bool * length:int option * decimalPrec:int option * decimalScale:int option) -> DataType

Allows creating a data type from the all the supported components.

Fork me on GitHub