Click or drag to resize
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)
Syntax
public static bool ValuesAreEqual(
	Object value1,
	Object value2
)

Parameters

value1
Type: SystemObject
value2
Type: SystemObject

Return Value

Type: Boolean
Remarks
Changing this method's signature will break code. Do a search for methodinfo retrieval of this method before changing this methods signature
See Also