MetaModel.Default Property
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.
Gets the first instance of a data model that is created by the application.
public:
static property System::Web::DynamicData::MetaModel ^ Default { System::Web::DynamicData::MetaModel ^ get(); };
public static System.Web.DynamicData.MetaModel Default { get; }
static member Default : System.Web.DynamicData.MetaModel
Public Shared ReadOnly Property Default As MetaModel
Property Value
The data-model instance.
Examples
The following example shows how to use the Default property in the GetModel method to get the default data model.
For a complete example, see the MetaModel class overview.
// Get the data model.
public MetaModel GetModel(bool defaultModel)
{
MetaModel model;
if (defaultModel)
model = MetaModel.Default;
else
model =
MetaModel.GetModel(typeof(AdventureWorksLTDataContext));
return model;
}
' Get the data model.
Public Function GetModel(ByVal defaultModel As Boolean) As MetaModel
Dim model As MetaModel
If defaultModel Then
model = MetaModel.[Default]
Else
model = MetaModel.GetModel(GetType(AdventureWorksLTDataContext))
End If
Return model
End Function
Remarks
This property provides a simple way to reference the default data-model instance. If the application uses multiple models, you must provide your own way to store references to the additional data models. To find a specific data model, call the MetaModel.GetModel method.