ModelConversionExtensionContext.Errors Property

A list of errors that can be shown in the Visual StudioError List when loading a custom file format and converting it to a custom file format.

Namespace:  Microsoft.Data.Entity.Design.Extensibility
Assembly:  Microsoft.Data.Entity.Design.Extensibility (in Microsoft.Data.Entity.Design.Extensibility.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property Errors As List(Of ExtensionError)
    Get
'Usage
Dim instance As ModelConversionExtensionContext
Dim value As List(Of ExtensionError)

value = instance.Errors
public abstract List<ExtensionError> Errors { get; }
public:
virtual property List<ExtensionError^>^ Errors {
    List<ExtensionError^>^ get () abstract;
}
abstract function get Errors () : List<ExtensionError>

Property Value

Type: System.Collections.Generic.List<ExtensionError>
A list of errors that can be shown in the Visual StudioError List when loading a custom file format and converting it to a custom file format.

Remarks

In a Visual Studio extension, errors defined in the Errors property can be shown in the Visual StudioError List when loading a custom file format and converting it to an .edmx format.

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

See Also

Reference

ModelConversionExtensionContext Class

ModelConversionExtensionContext Members

Microsoft.Data.Entity.Design.Extensibility Namespace

Other Resources

Visual Studio Extensibility Developer Center

.edmx File Overview (Entity Framework)

Developing Visual Studio Extensions