| 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.3.0.0 (5.3.0)
Syntaxpublic 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: 
Boolean
RemarksChanging this method's signature will break code. Do a search for methodinfo retrieval of this method before changing this methods signature
See Also