ComponentOne FlexPivot for WinForms
query(Object) Method

C1.DataEngine.4 Assembly > C1.DataEngine Namespace > Workspace Class > query Method : query(Object) Method
Columns of the resut, and other settings of the query.
Creates a query based on a single table or query (not a join).
Syntax
'Declaration
 
Public Overloads Function query( _
   ByVal settings As System.Object _
) As System.Dynamic.ExpandoObject
public System.Dynamic.ExpandoObject query( 
   System.object settings
)

Parameters

settings
Columns of the resut, and other settings of the query.

Return Value

Dynamic object representing the query.
Remarks
The dynamic object can be used in queries over the result of this query if such are needed, same way as in table Also, it has a Query property that returns the Query object representing this query. It is used for executing the query: dynamic query1 = workspace.query(...); query1.Query.Execute();
See Also

Reference

Workspace Class
Workspace Members
Overload List