Enum DictionaryAddKeyTreatment
Specifies how to handle any duplicate keys when adding items to a dictionary.
The default is FatalOnDuplicate.
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public enum DictionaryAddKeyTreatment
Fields
| Name | Description |
|---|---|
| ErrorOnDuplicate | On receiving a duplicate key, fail the worker with an Error state. |
| FatalOnDuplicate | On receiving a duplicate key, fail the worker with a Fatal state. This is the default. |
| UseFirstDuplicate | Ignore any duplicate keys, and keep using the first lookup value for this key. |
| UseLastDuplicate | Use the last lookup value for this key. |
See Also
DictionaryTarget<TInput, TKey, TValue>