Npgsql Api Docs

NpgsqlInterval Subtraction Operator 

Subtracts one NpgsqlInterval from another.

[Visual Basic]
returnValue = NpgsqlInterval.op_Subtraction(x, y)
[C#]
public static NpgsqlInterval operator -(
   NpgsqlInterval x,
   NpgsqlInterval y
);

Parameters

x
The NpgsqlInterval to subtract the other from.
y
The NpgsqlInterval to subtract from the other.

Return Value

An NpgsqlInterval whose values are the difference of the arguments

See Also

NpgsqlInterval Class | NpgsqlTypes Namespace