Enum IdentityMapBehavior
- Namespace
- DevExpress.Xpo
- Assembly
- DevExpress.Xpo.v24.1.dll
Defines how references to instances of persistent objects are stored in a session’s Identity Map.
public enum IdentityMapBehavior
Fields
Default = 0
The behavior is determined by XPO. Curently, this is equal to IdentityMapBehavior.Weak.
Strong = 2
Direct references to objects are used.
Weak = 1
Weak references are used, which allows the garbage collector to reclaim unused objects.