LinqUtilsValuesAreEqual Method |
Compares two values based on their values using the ORMSupportClasses routine in FieldUtilities. This method is here to avoid breakage of Linq code
without noticing it if the signature of the ORMSupportClasses routine changes. This routine has no code of its own, it simply calls into the
FieldUtilities.ValuesAreEqual routine
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public static bool ValuesAreEqual(
Object value1,
Object value2
)
Public Shared Function ValuesAreEqual (
value1 As Object,
value2 As Object
) As Boolean
Parameters
- value1
- Type: SystemObject
- value2
- Type: SystemObject
Return Value
Type:
BooleanRemarks Changing this method's signature will break code. Do a search for methodinfo retrieval of this method before changing this methods signature
See Also