MetaTable.GetTable(Type) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the metatable that is associated with the specified type.
public:
static System::Web::DynamicData::MetaTable ^ GetTable(Type ^ entityType);
public static System.Web.DynamicData.MetaTable GetTable (Type entityType);
static member GetTable : Type -> System.Web.DynamicData.MetaTable
Public Shared Function GetTable (entityType As Type) As MetaTable
Parameters
- entityType
- Type
The type of the entity.
Returns
The metatable that is associated with the specified type.
Exceptions
The TryGetTable(Type, MetaTable) method that was called by this method returned false
.
Remarks
This method calls TryGetTable(Type, MetaTable). If TryGetTable(Type, MetaTable) returns false
, an InvalidOperationException exception is thrown.