The results of a table being compared in two databases.

Namespace:  RedGate.SQLDataCompare.Engine
Assembly:  RedGate.SQLDataCompare.Engine (in RedGate.SQLDataCompare.Engine.dll)

Syntax

Visual Basic (Declaration)
Public NotInheritable Class TableDifference _
	Implements IDisposable
C#
public sealed class TableDifference : IDisposable
Visual C++
public ref class TableDifference sealed : IDisposable

Remarks

When CompareDatabases(Database, Database, SchemaMappings) is called, its TableDifferences collection contains a set of TableDifference objects, each one corresponding to a table that has been compared. Each TableDifference object contains properties giving a summary of the number of different records in the two tables, and a series of ResultsStore objects containing the details of differing and identical rows.

Examples

See ComparisonSession for an in-depth example.

Inheritance Hierarchy

System..::.Object
  RedGate.SQLDataCompare.Engine..::.TableDifference

See Also