Method CheckForMissingSharedTableDataEntries
CheckForMissingSharedTableDataEntries(MissingEntryAction)
Tables do not store the full information for an entry, instead they store just the Id of that entry which can then be referenced in SharedData. It is possible that something may have caused an entry to be in the Table but missing from SharedData. This will cause issues and often result in the entry being ignored. This will check for any entries that exist in the table but do not have an entry in SharedData.
Declaration
public IList<TEntry> CheckForMissingSharedTableDataEntries(MissingEntryAction action = MissingEntryAction.Nothing)
Parameters
| Type | Name | Description |
|---|---|---|
| MissingEntryAction | action | The action to take on the found missing entries. |
Returns
| Type | Description |
|---|---|
| IList<TEntry> | The identified missing entries. |