Example #1
0
 public string ToJson() =>
 IsNull
                         ? "null"
                         : OracleTimestamp.ToJson(_dateTime, _value.Nanosecond, null);
Example #2
0
 public string ToJson()
 {
     return(IsNull
                         ? "null"
                         : OracleTimestamp.ToJson(this, 0, null));
 }
Example #3
0
 public string ToJson() =>
 IsNull
                         ? "null"
                         : OracleTimestamp.ToJson(this, 0, null);
Example #4
0
 public string ToJson()
 {
     return(IsNull
                         ? "null"
                         : OracleTimestamp.ToJson(_dateTime, _value.Nanosecond, _value.TimeZone));
 }