Npgsql Api Docs

NpgsqlInterval Less Than Or Equal Operator 

Compares two NpgsqlInterval instances to see if the first is less than or equivalent to the second

[Visual Basic]
returnValue = NpgsqlInterval.op_LessThanOrEqual(x, y)
[C#]
public static bool operator <=(
   NpgsqlInterval x,
   NpgsqlInterval y
);

Parameters

x
The first NpgsqlInterval to compare.
y
The second NpgsqlInterval to compare.

Return Value

true if the first NpgsqlInterval is less than or equivalent to second, false otherwise.

See Also

NpgsqlInterval Class | NpgsqlTypes Namespace