DataHasChanges(DataRow, DataRowVersion, String, String) Method

Compares if there are changes between the DataRow and a version of it.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static bool HasChanges(
	DataRow row,
	DataRowVersion version,
	string[] includeColumns = null,
	string[] excludeColumns = null
)

Parameters

row  DataRow
Datarow to compare.
version  DataRowVersion
Datarow version
includeColumns  String  (Optional)
List with included fields, if omitted then all fields are considered.
excludeColumns  String  (Optional)
List with excluded fields.

Return Value

Boolean
if the data has changes; otherwise, .

See Also