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
Syntaxpublic static bool CompareNonScalarAttributes<T>(
this T currentObject,
EnterpriseOneEntityObject otherObject
)
where T : EnterpriseOneEntityObject
<ExtensionAttribute>
Public Shared Function CompareNonScalarAttributes(Of T As EnterpriseOneEntityObject) (
currentObject As T,
otherObject As EnterpriseOneEntityObject
) As Boolean
public:
[ExtensionAttribute]
generic<typename T>
where T : EnterpriseOneEntityObject
static bool CompareNonScalarAttributes(
T currentObject,
EnterpriseOneEntityObject^ otherObject
)
[<ExtensionAttribute>]
static member CompareNonScalarAttributes :
currentObject : 'T *
otherObject : EnterpriseOneEntityObject -> bool when '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:
Booleantrue 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