Chili.Opf3 Send comments on this topic.
Load(ObjectContext,IQuery) Method
See Also 
Chili.Opf3 Namespace > ICustomPersister Interface > Load Method : Load(ObjectContext,IQuery) Method




context
ObjectContext that called this routine.
query
IQuery that is executed by the context to load the objects.
This method is called during load from the storage by the ObjectContext class.

Syntax

Visual Basic (Declaration) 
Overloads Overridable Sub Load( _
   ByVal context As ObjectContext, _
   ByVal query As IQuery _
) 
Visual Basic (Usage)Copy Code
Dim instance As ICustomPersister
Dim context As ObjectContext
Dim query As IQuery
 
instance.Load(context, query)
C# 
virtual void Load( 
   ObjectContext context,
   IQuery query
)
Managed Extensions for C++ 
virtual void Load( 
   ObjectContext* context,
   IQuery* query
) 
C++/CLI 
virtual void Load( 
   ObjectContext^ context,
   IQuery^ query
) 

Parameters

context
ObjectContext that called this routine.
query
IQuery that is executed by the context to load the objects.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also