共用方式為


MetaModel.TryGetTable 方法

定義

嘗試取得與指定之資料表相關聯的中繼資料。

多載

TryGetTable(String, MetaTable)

嘗試取得與指定之資料表相關聯的中繼資料。

TryGetTable(Type, MetaTable)

嘗試取得與指定之資料表相關聯的中繼資料。

TryGetTable(String, MetaTable)

嘗試取得與指定之資料表相關聯的中繼資料。

public:
 bool TryGetTable(System::String ^ uniqueTableName, [Runtime::InteropServices::Out] System::Web::DynamicData::MetaTable ^ % table);
public bool TryGetTable (string uniqueTableName, out System.Web.DynamicData.MetaTable table);
member this.TryGetTable : string * MetaTable -> bool
Public Function TryGetTable (uniqueTableName As String, ByRef table As MetaTable) As Boolean

參數

uniqueTableName
String

唯一識別資料表的名稱。

table
MetaTable

當這個方法傳回時,如果它有找到要求的資料表,則會包含該資料表的中繼資料。 這個參數會以未初始化的狀態傳遞。

傳回

如果有找到資料表中繼資料則為 true,否則為 false

例外狀況

uniqueTableNamenull

備註

這個方法會取得與指定資料表相關聯的中繼資料。 如果找不到資料表,這個方法會傳 false 回 。 這與 GetTable 方法不同,如果找不到資料表,則會擲回例外狀況。

適用於

TryGetTable(Type, MetaTable)

嘗試取得與指定之資料表相關聯的中繼資料。

public:
 bool TryGetTable(Type ^ entityType, [Runtime::InteropServices::Out] System::Web::DynamicData::MetaTable ^ % table);
public bool TryGetTable (Type entityType, out System.Web.DynamicData.MetaTable table);
member this.TryGetTable : Type * MetaTable -> bool
Public Function TryGetTable (entityType As Type, ByRef table As MetaTable) As Boolean

參數

entityType
Type

資料表類型。

table
MetaTable

當這個方法傳回時,如果已找到要求的資料表,則包含指定之資料表的中繼資料。 這個參數會以未初始化的狀態傳遞。

傳回

如果已找到該資料表中繼資料則為 true,否則為 false

例外狀況

entityTypenull

備註

這個方法會取得與指定資料表相關聯的中繼資料。 如果找不到資料表,這個方法會傳 false 回 。 這與 GetTable 方法不同,如果找不到資料表,則會擲回例外狀況。

適用於