dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlNumeric Structure / Less Than Operator
First PgSqlNumeric.
Second PgSqlNumeric.

In This Topic
    Less Than Operator (PgSqlNumeric)
    In This Topic
    Compares two PgSqlNumeric structures to determine wheher the left one is less than the right.
    Syntax
    'Declaration
     
    Public Operator <( _
       ByVal left As PgSqlNumeric, _
       ByVal right As PgSqlNumeric _
    ) As Boolean
    public bool operator <( 
       PgSqlNumeric left,
       PgSqlNumeric right
    )

    Parameters

    left
    First PgSqlNumeric.
    right
    Second PgSqlNumeric.

    Return Value

    True if the first of two PgSqlNumeric values is less than the second; otherwise, false.
    See Also