TypeVersionLoadMembers Method |
Loads member fields from persistent storage
Namespace:
VelocityDb.TypeInfo
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public void LoadMembers(
IOptimizedPersistable toLoad,
Schema schema,
List<IOptimizedPersistable> toLoadMembers,
int graphDepth,
int graphDepthToLoad,
SessionBase session,
bool primitivesOnly = false
)
Public Sub LoadMembers (
toLoad As IOptimizedPersistable,
schema As Schema,
toLoadMembers As List(Of IOptimizedPersistable),
graphDepth As Integer,
graphDepthToLoad As Integer,
session As SessionBase,
Optional primitivesOnly As Boolean = false
)
public:
void LoadMembers(
IOptimizedPersistable^ toLoad,
Schema^ schema,
List<IOptimizedPersistable^>^ toLoadMembers,
int graphDepth,
int graphDepthToLoad,
SessionBase^ session,
bool primitivesOnly = false
)
member LoadMembers :
toLoad : IOptimizedPersistable *
schema : Schema *
toLoadMembers : List<IOptimizedPersistable> *
graphDepth : int *
graphDepthToLoad : int *
session : SessionBase *
?primitivesOnly : bool
(* Defaults:
let _primitivesOnly = defaultArg primitivesOnly false
*)
-> unit
Parameters
- toLoad
- Type: VelocityDbIOptimizedPersistable
Object to load fields for - schema
- Type: VelocityDb.TypeInfoSchema
The current schema - toLoadMembers
- Type: System.Collections.GenericListIOptimizedPersistable
To be loaded fields list - graphDepth
- Type: SystemInt32
Current graph depth loaded - graphDepthToLoad
- Type: SystemInt32
Max graph depth to load fields for - session
- Type: VelocityDb.SessionSessionBase
The active session - primitivesOnly (Optional)
- Type: SystemBoolean
If true, load only primitive values
See Also