UNPKG
@themost/jspa
Version:
latest (2.0.0)
2.0.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
MOST Web Framework Persistence API
github.com/themost-framework/jspa
themost-framework/jspa
@themost/jspa
/
src
/
CascadeType.ts
15 lines
(14 loc)
•
241 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * Defines the set of cascadable operations that are propagated to the associated entity. */
enum
CascadeType
{ All =
31
, Detach =
1
, Merge =
2
, Persist =
4
, Refresh =
8
, Remove =
16
}
export
{ CascadeType }