MetaTable.GetTable(Type) Method

Definition

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.

Applies to