ModelFileExtensionAttribute.FileExtension Property
The file extension for custom files that can be loaded and 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
Public ReadOnly Property FileExtension As String
Get
'Usage
Dim instance As ModelFileExtensionAttribute
Dim value As String
value = instance.FileExtension
public string FileExtension { get; }
public:
property String^ FileExtension {
String^ get ();
}
function get FileExtension () : String
Property Value
Type: System.String
The file extension for custom files that can be loaded and saved by the Entity Data Model Designer.
Remarks
In a Visual Studio extension, the ModelFileExtensionAttribute is used when extending the functionality of the Entity Data Model Designer (Entity Designer). Specifically, the ModelFileExtensionAttribute is used to annotate classes that implement the IModelConversionExtension interface. The ModelFileExtensionAttribute constructor accepts a string parameter that specifies the file extension for custom files that can be loaded and saved by the Entity Designer.
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
ModelFileExtensionAttribute Class
ModelFileExtensionAttribute Members
Microsoft.Data.Entity.Design.Extensibility Namespace