Npgsql Api Docs

NpgsqlInterval Greater Than Or Equal Operator 

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

[Visual Basic]
returnValue = NpgsqlInterval.op_GreaterThanOrEqual(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 greater than or equivalent to the second, false otherwise.

See Also

NpgsqlInterval Class | NpgsqlTypes Namespace