SqlGuid.LessThanOrEqual(SqlGuid, SqlGuid) Operator

Definition

Compares two instances of SqlGuid to determine whether the first is less than or equal to the second.

public:
 static System::Data::SqlTypes::SqlBoolean operator <=(System::Data::SqlTypes::SqlGuid x, System::Data::SqlTypes::SqlGuid y);
public static System.Data.SqlTypes.SqlBoolean operator <= (System.Data.SqlTypes.SqlGuid x, System.Data.SqlTypes.SqlGuid y);
static member ( <= ) : System.Data.SqlTypes.SqlGuid * System.Data.SqlTypes.SqlGuid -> System.Data.SqlTypes.SqlBoolean
Public Shared Operator <= (x As SqlGuid, y As SqlGuid) As SqlBoolean

Parameters

x
SqlGuid

A SqlGuid structure.

y
SqlGuid

A SqlGuid structure.

Returns

A SqlBoolean that is True if the first instance is less than or equal to the second instance. Otherwise, False. If either instance of SqlGuid is null, the Value of the SqlBoolean will be Null.

Remarks

The equivalent method for this operator is SqlGuid.LessThanOrEqual.

Applies to

See also