Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public static List<string> GetNamesOfChangedFields(
	IEntityFieldsCore fieldsA,
	IEntityFieldsCore fieldsB
)

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: ListString
the names of the fields which have a different value in A than in B
See Also