Chili.Opf3 Send comments on this topic.
ObjectListHolder Constructor(Generic IList,IQuery)
See Also 
Chili.Opf3.Relations Namespace > Generic ObjectListHolder Class > ObjectListHolder Constructor : ObjectListHolder Constructor(Generic IList,IQuery)




list
List that is populated with the connected objects.
query
IQuery that is executed to load the associated objects. This parameter allows you to use any kind of query without using the build in functionality.
Creates a new instance of the ObjectListHolder Class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal list As IList(Of T), _
   ByVal query As IQuery _
)
Visual Basic (Usage)Copy Code
Dim list As IList(Of T)
Dim query As IQuery
 
Dim instance As ObjectListHolder(Of T)(list, query)
C# 
public Generic ObjectListHolder( 
   IList<T> list,
   IQuery query
)
Managed Extensions for C++ 
public: Generic ObjectListHolder( 
   IList<T>* list,
   IQuery* query
)
C++/CLI 
public:
Generic ObjectListHolder( 
   IList<T>^ list,
   IQuery^ query
)

Parameters

list
List that is populated with the connected objects.
query
IQuery that is executed to load the associated objects. This parameter allows you to use any kind of query without using the build in functionality.

Requirements

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

See Also