areIdentical abstract method

bool areIdentical(
  1. dynamic a,
  2. dynamic b
)

Whether the two items being compared have the same identity, for example two records with the same primary key. This check is used to determine if an item should be removed or added to a list, rather than updated.

The areEqual check is used to determine if the item has changed.

Implementation

bool areIdentical(a, b);