Click or drag to resize

EnterpriseOneEntityObjectExtensionsCompareNonScalarAttributesT Method

Compares the non-scalar attributes of the current and the specified entity object. Returns true if the non-scalar attributes have the same values.

Namespace:  Aloe.EnterpriseOne.Model.Core.Transformations
Assembly:  Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntax
public static bool CompareNonScalarAttributes<T>(
	this T currentObject,
	EnterpriseOneEntityObject otherObject
)
where T : EnterpriseOneEntityObject

Parameters

currentObject
Type: T
The current entity object
otherObject
Type: Aloe.EnterpriseOne.Model.CoreEnterpriseOneEntityObject
The other entity object.

Type Parameters

T

Return Value

Type: Boolean
true if the values are the same.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . 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
The non-scalar attributes are usually text attributes and references. Quantity and amount attributes are usually the scalar attributes.
See Also