Click or drag to resize

ObjectSerializationMode Enumeration

Represents a mode for the Omada.OE.AppLogic.Serialization.ObjectSerializer class.

Namespace:  Omada.OE.Model
Assembly:  Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntax
C#
public enum ObjectSerializationMode
Members
  Member nameValueDescription
ForUpdate0 Objects will be exported in a format that is suitable for being importing into THE SAME source system again. The exported objects are identified by their uid. The Operation on each object will be Update. Set- and reference-property values will be identified by their internal id.
ForCreation1 Objects will be exported in a format that is suitable for importing the objects into another OIS ES instance. The Operation on each object will be Create. Set- and Reference-property values will be identified by a textual value.
ForUpdateOtherSystem2 Objects will be exported in a format that is suitable for being importing into another OIS ES instance where they already exist (but not necessarily having the same UIDs). The exported objects must have at least one text or integer property marked as 'unique' which will be used as key. The Operation on each object will be Update. Set- and Reference-property values will be identified by a textual value.
See Also