IModelTransformExtension.OnBeforeModelSaved Method
Defines functionality for extending the process by which an .edmx file is saved by the Entity Data Model Designer.
Namespace: Microsoft.Data.Entity.Design.Extensibility
Assembly: Microsoft.Data.Entity.Design.Extensibility (in Microsoft.Data.Entity.Design.Extensibility.dll)
Syntax
'Declaration
Sub OnBeforeModelSaved ( _
context As ModelTransformExtensionContext _
)
'Usage
Dim instance As IModelTransformExtension
Dim context As ModelTransformExtensionContext
instance.OnBeforeModelSaved(context)
void OnBeforeModelSaved(
ModelTransformExtensionContext context
)
void OnBeforeModelSaved(
ModelTransformExtensionContext^ context
)
function OnBeforeModelSaved(
context : ModelTransformExtensionContext
)
Parameters
- context
Type: Microsoft.Data.Entity.Design.Extensibility.ModelTransformExtensionContext
Provides file and Visual Studio project information.
Remarks
In a Visual Studio extension, the OnBeforeModelSaved method is used to extend the functionality of the Entity Data Model Designer (Entity Designer). Specifically, the OnBeforeModelSaved() method customizes an .edmx file before it is saved.
Note: |
---|
When building a Visual Studio extension that also implements the IModelConversionExtension.OnBeforeFileSaved method, the OnBeforeModelSaved method will be called before the IModelConversionExtension.OnBeforeFileSaved method. |
For more information about extending the functionality of the ADO.NET Entity Data Model Tools, see Extending the Entity Data Model Tools and ADO.NET Entity Data Model Designer Extension Starter Kit.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
IModelTransformExtension Interface
IModelTransformExtension Members
Microsoft.Data.Entity.Design.Extensibility Namespace
Other Resources
.edmx File Overview (Entity Framework)