LinqExtensionsGreaterEqualNull Method |
Returns true if the object is greater than or equal to the value or the object is null.
Namespace:
Aloe.SystemFrameworks.Domain.LINQ
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic static bool GreaterEqualNull(
this Object obj,
Object value
)
<ExtensionAttribute>
Public Shared Function GreaterEqualNull (
obj As Object,
value As Object
) As Boolean
public:
[ExtensionAttribute]
static bool GreaterEqualNull(
Object^ obj,
Object^ value
)
[<ExtensionAttribute>]
static member GreaterEqualNull :
obj : Object *
value : Object -> bool
Parameters
- obj
- Type: SystemObject
The object to check. - value
- Type: SystemObject
The value .
Return Value
Type:
Boolean
true if the object is greater than or equal to the value or the object is null.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks
.GreaterEqualNull is recognized by the domain objects query translator and is optimally executed as an efficient
data source command.
See Also