'宣言 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.
'宣言 Public Function table( _ ByVal name As System.String _ ) As System.Dynamic.ExpandoObject
public System.Dynamic.ExpandoObject table( System.string name )
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;