Method AsMySqlDecimal
| Improve this Doc View SourceAsMySqlDecimal(_Decimal, Byte, Byte)
Specifies MySQL DECIMAL data type for column.
Declaration
public static _Decimal AsMySqlDecimal(this _Decimal column, byte precision = 10, byte scale = 0)
Parameters
Type | Name | Description |
---|---|---|
_Decimal | column | The column. |
System.Byte | precision | The precision of the data type. |
System.Byte | scale | The scale of the data type. |
Returns
Type | Description |
---|---|
_Decimal | This column for fluent coding. |