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

C1.DataEngine アセンブリ > C1.DataEngine 名前空間 > Workspace クラス > join メソッド : join(String,ExpandoObject,Object) メソッド
Name of the query. If the name is specified, query result is stored on disk.
Main table to which linked tables are joined.
Columns of the result, and links joining linked tables to the main table.
Creates a join query.
シンタックス
'宣言
 
Public Overloads Function join( _
   ByVal name As System.String, _
   ByVal mainTable As System.Dynamic.ExpandoObject, _
   ByVal settings As System.Object _
) As System.Dynamic.ExpandoObject
public System.Dynamic.ExpandoObject join( 
   System.string name,
   System.Dynamic.ExpandoObject mainTable,
   System.object settings
)

パラメータ

name
Name of the query. If the name is specified, query result is stored on disk.
mainTable
Main table to which linked tables are joined.
settings
Columns of the result, and links joining linked tables to the main table.

戻り値の型

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.join(...); query1.Query.Execute();
参照

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