NPersistence Reference Guide
Assembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)
Defines the set of cascadable operations that are propagated
to the associated entity.
The value cascade=ALL is equivalent to
cascade={PERSIST, MERGE, REMOVE, REFRESH, DETACH}.
Namespace: NPersistenceAssembly: NPersistence (in NPersistence.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
| C# |
public enum CascadeType
Members
| Member | Value | Description |
|---|---|---|
| ALL | 0 | Cascade all operations/// |
| PERSIST | 1 | Cascade persist operation/// |
| MERGE | 2 | Cascade merge operation/// |
| REMOVE | 3 | Cascade remove operation/// |
| REFRESH | 4 | Cascade refresh operation/// |
| DETACH | 5 | Cascade detach operation
|