Class IntegerValue
Represents a 32-bit signed integer value.
Inherited Members
Namespace: Oracle.NoSQL.SDK
Assembly: Oracle.NoSQL.SDK.dll
Syntax
public class IntegerValue : FieldValue
Remarks
This class is used to represent values of NoSQL data type
Integer. This value is represented by a C# type
int.
Constructors
| Name | Description |
|---|---|
| IntegerValue(Int32) |
Initializes a new instance of the IntegerValue with
the specified int value.
|
Properties
| Name | Description |
|---|---|
| AsInt32 |
Gets the value of this instance as int.
|
| DbType | Gets DbType of this instance which represents the type of this value. |
Methods
| Name | Description |
|---|---|
| SerializeAsJson(Utf8JsonWriter, JsonOutputOptions) | Writes JSON representation of the value to the stream represented by Utf8JsonWriter. |
| ToDateTime() | Converts the value represented by this instance to a DateTime object. |
| ToDecimal() | Converts the value represented by this instance to a decimal number. |
| ToDouble() | Converts the value represented by this instance to a double precision floating point number. |
| ToInt64() | Converts the value represented by this instance to a 64-bit signed integer. |