FlexPivot for WinForms
table メソッド

C1.DataEngine アセンブリ > C1.DataEngine 名前空間 > Workspace クラス : table メソッド
The name of the base table
Gets a base table by its name.
シンタックス
'宣言
 
Public Function table( _
   ByVal name As System.String _
) As System.Dynamic.ExpandoObject
public System.Dynamic.ExpandoObject table( 
   System.string name
)

パラメータ

name
The name of the base table

戻り値の型

Dynamic object representing the base table.
解説
The dynamic object is used in queries over this table, for example, dynamic od = workspace.table("OderDetails"); dynamic query1 = workspace.query(new { price = Op.Mul(od.UnitPrice, od.Discount) }); Also, it has a Table property that returns the BaseTable object representing this base table: BaseTable t = workspace.table("t1").Table;
参照

Workspace クラス
Workspace メンバ