Chili.Opf3 Send comments on this topic.
ObjectQuery Constructor
See Also 
Chili.Opf3.Query Namespace > Generic ObjectQuery Class : ObjectQuery Constructor




conditions
A OPath expression that is trasformed to a storage depentend query when executed on the storage.
parameters
Parameters of the OPath expression. All tags in the OPath expression are replaced by the parameters that are set here.
Creates a new instance of the ObjectQuery Class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal conditions As String, _
   ByVal ParamArray parameters() As Object _
)
Visual Basic (Usage)Copy Code
Dim conditions As String
Dim parameters() As Object
 
Dim instance As ObjectQuery(Of T)(conditions, parameters)
C# 
public Generic ObjectQuery( 
   string conditions,
   params object[] parameters
)
Managed Extensions for C++ 
public: Generic ObjectQuery( 
   string* conditions,
   params Object*[]* parameters
)
C++/CLI 
public:
Generic ObjectQuery( 
   String^ conditions,
   ... array<Object^>^ parameters
)

Parameters

conditions
A OPath expression that is trasformed to a storage depentend query when executed on the storage.
parameters
Parameters of the OPath expression. All tags in the OPath expression are replaced by the parameters that are set here.

Requirements

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

See Also