Ensures that the value of a parameter is null or greater than zero.
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntaxpublic static Nullable<long> IsNullOrGreaterThanZero(
Nullable<long> value,
string paramName
)
Public Shared Function IsNullOrGreaterThanZero (
value As Nullable(Of Long),
paramName As String
) As Nullable(Of Long)
static member IsNullOrGreaterThanZero :
value : Nullable<int64> *
paramName : string -> Nullable<int64>
Parameters
- value
- Type: SystemNullableInt64
The value of the parameter. - paramName
- Type: SystemString
The name of the parameter.
Return Value
Type:
NullableInt64The value of the parameter.
See Also