LinqExtensionsDomainEqual Method |
If the objects are
DomainObject this method uses == operator.
Namespace:
Aloe.SystemFrameworks.Domain.LINQ
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic static bool DomainEqual(
this Object obj,
Object value
)
<ExtensionAttribute>
Public Shared Function DomainEqual (
obj As Object,
value As Object
) As Boolean
public:
[ExtensionAttribute]
static bool DomainEqual(
Object^ obj,
Object^ value
)
[<ExtensionAttribute>]
static member DomainEqual :
obj : Object *
value : Object -> bool
Parameters
- obj
- Type: SystemObject
- value
- Type: SystemObject
Return Value
Type:
BooleanUsage 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).
See Also