Click or drag to resize

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
C#
public enum existingDataMode
Request Example View Source
Members
  Member nameValueDescription
overwriteExisting0 it will overwrite any existing data in
overwriteExistingIfEmptyOrNull1 The overwrites existing only if existing value is null or empty string
leaveExisting2 it will leave existing entries unchanged
clearExisting3 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
filterAndLeaveExisting4 it will remove all existing entries that are not matched by new collection
filterNewOverwriteExisting5 result is key-crossection of existing and new collection - values are from new
sumWithExisting6 result will be sum of existing and new values
See Also