ModelFileExtensionAttribute Class

Specifies a custom file extension that can be loaded or 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
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple := False)> _
<MetadataAttributeAttribute> _
Public NotInheritable Class ModelFileExtensionAttribute _
    Inherits Attribute
'Usage
Dim instance As ModelFileExtensionAttribute
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false)]
[MetadataAttributeAttribute]
public sealed class ModelFileExtensionAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class, AllowMultiple = false)]
[MetadataAttributeAttribute]
public ref class ModelFileExtensionAttribute sealed : public Attribute
public final class ModelFileExtensionAttribute extends Attribute

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.

Inheritance Hierarchy

System.Object
  System.Attribute
    Microsoft.Data.Entity.Design.Extensibility.ModelFileExtensionAttribute

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

ModelFileExtensionAttribute Members

Microsoft.Data.Entity.Design.Extensibility Namespace

Other Resources

Visual Studio Extensibility Developer Center

Developing Visual Studio Extensions