FieldUtilitiesGetNamesOfChangedFields Method |
Gets the names of the changed fields. Assumes field sets A and B have the same fields and are equal in size
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public static List<string> GetNamesOfChangedFields(
IEntityFieldsCore fieldsA,
IEntityFieldsCore fieldsB
)
Public Shared Function GetNamesOfChangedFields (
fieldsA As IEntityFieldsCore,
fieldsB As IEntityFieldsCore
) As List(Of String)
Parameters
- fieldsA
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldsCore
fields set A. Has to contain IEntityFieldCore typed objects - fieldsB
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldsCore
fields set B. Has to contain IEntityFieldCore typed objects
Return Value
Type:
ListStringthe names of the fields which have a different value in A than in B
See Also