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
Public Enumeration PersistencePolicy
public enum class PersistencePolicy
Members
| Member name | Value | Description |
---|
| Automatic | 0 |
The system will automatically determine whether generated entity will be persistent or transient
based on the parent (see remarks).
|
| Persistent | 1 | The generated entity will be persistent. |
| Transient | 2 | The 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