dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleJson Structure / Greater Than or Equal Operator
The first OracleJson.
The second OracleJson.

In This Topic
    Greater Than or Equal Operator (OracleJson)
    In This Topic
    Compares two OracleJson structures to determine if the first is greater than or equal to the second.
    Syntax
    'Declaration
     
    Public Operator >=( _
       ByVal value1 As OracleJson, _
       ByVal value2 As OracleJson _
    ) As Boolean
    public bool operator >=( 
       OracleJson value1,
       OracleJson value2
    )

    Parameters

    value1
    The first OracleJson.
    value2
    The second OracleJson.

    Return Value

    true if the first of two OracleJson values is greater than or equal to the second; otherwise, false.
    See Also