OptimizedPersistableInitializeAfterRecreate Method |
This function is called when an object has been read from disk before all data members (fields) have been fully loaded. Override this to provide your own initializations of transient data.
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public virtual void InitializeAfterRecreate(
SessionBase session
)
Public Overridable Sub InitializeAfterRecreate (
session As SessionBase
)
public:
virtual void InitializeAfterRecreate(
SessionBase^ session
)
abstract InitializeAfterRecreate :
session : SessionBase -> unit
override InitializeAfterRecreate :
session : SessionBase -> unit
Parameters
- session
- Type: VelocityDb.SessionSessionBase
The active session managing this object
Implements
IOptimizedPersistableInitializeAfterRecreate(SessionBase)See Also