PersistencePolicy Enumeration

Specifies the persistence/transience options for entity generation methods.

Namespace:  Dundas.BI.Entities
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
public enum PersistencePolicy
Members
  Member nameValueDescription
Automatic0 The system will automatically determine whether generated entity will be persistent or transient based on the parent (see remarks).
Persistent1The generated entity will be persistent.
Transient2The generated entity will be transient.
Remarks
If the Automatic option is specified, the generated entity will be transient if any of the following are true:
  • The parent entry is a File.
  • The parent entry is a sub-entry (see IsSubentry.
See Also