FlexPivot for WinForms
query(String,Object) メソッド

C1.DataEngine アセンブリ > C1.DataEngine 名前空間 > Workspace クラス > query メソッド : query(String,Object) メソッド
Name of the query. If the name is specified, query result is stored on disk.
Columns of the result, and other settings of the query.
Creates a query based on a single table or query (not a join).
シンタックス
'宣言
 
Public Overloads Function query( _
   ByVal name As System.String, _
   ByVal settings As System.Object _
) As System.Dynamic.ExpandoObject
public System.Dynamic.ExpandoObject query( 
   System.string name,
   System.object settings
)

パラメータ

name
Name of the query. If the name is specified, query result is stored on disk.
settings
Columns of the result, and other settings of the query.

戻り値の型

Dynamic object representing the query.
解説
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();
参照

Workspace クラス
Workspace メンバ
オーバーロード一覧