DataHasChanges(DataTable, DataView, String, String) Method

Compare if there are changes in a DataTable and a DataView.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static bool HasChanges(
	DataTable dataA,
	DataView dataB,
	string[] includeColumns = null,
	string[] excludeColumns = null
)

Parameters

dataA  DataTable
DataTable to compare.
dataB  DataView
DataView to compare.
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