 | existingDataMode Enumeration |
imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Rule how to handle existing data when append new data collection or single entry
Namespace:
imbSCI.Core.enums
Assembly:
imbSCI.Core (in imbSCI.Core.dll) Version: 0.3.58.
Syntax
Members|
| Member name | Value | Description |
|---|
| overwriteExisting | 0 |
it will overwrite any existing data in
|
| overwriteExistingIfEmptyOrNull | 1 |
The overwrites existing only if existing value is null or empty string
|
| leaveExisting | 2 |
it will leave existing entries unchanged
|
| clearExisting | 3 |
it will clear any (other) existing entry or entries and place only specified (one) or (collection). WARNING: beware that in single entry operation it will clear ALL existing data and place only the one specified
|
| filterAndLeaveExisting | 4 |
it will remove all existing entries that are not matched by new collection
|
| filterNewOverwriteExisting | 5 |
result is key-crossection of existing and new collection - values are from new
|
| sumWithExisting | 6 |
result will be sum of existing and new values
|
See Also