Chili.Opf3 Send comments on this topic.
Union Method
See Also 
Chili.Opf3 Namespace > Generic ObjectSet Class : Union Method




objectSet
The ObjectSet united with the current instance.
Unites this instance with another instance of ObjectSet. Duplicates are removed (they are identified by analyzing the identifiers of the persistent objects) and the current instance of the ObjectSet is sorted by identifiers. To have the instance resorted use the Sort routine of the ObjectSet.

Syntax

Visual Basic (Declaration) 
Public Sub Union( _
   ByVal objectSet As ObjectSet(Of T) _
) 
Visual Basic (Usage)Copy Code
Dim instance As ObjectSet(Of T)
Dim objectSet As ObjectSet(Of T)
 
instance.Union(objectSet)
C# 
public void Union( 
   ObjectSet<T> objectSet
)
Managed Extensions for C++ 
public: void Union( 
   ObjectSet<T>* objectSet
) 
C++/CLI 
public:
void Union( 
   ObjectSet<T>^ objectSet
) 

Parameters

objectSet
The ObjectSet united with the current instance.

Requirements

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

See Also