EntityDesignerChangeScope Class

Creates a unit of work that can be undone or redone with the Undo and Redo buttons in Visual Studio.

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

Syntax

'Declaration
Public MustInherit Class EntityDesignerChangeScope _
    Implements IDisposable
'Usage
Dim instance As EntityDesignerChangeScope
public abstract class EntityDesignerChangeScope : IDisposable
public ref class EntityDesignerChangeScope abstract : IDisposable
public abstract class EntityDesignerChangeScope implements IDisposable

Remarks

In a Visual Studio property extension, the EntityDesignerChangeScope class allows you to create a unit of work that can be undone or redone with the Undo and Redo buttons in Visual Studio. An instance of EntityDesignerChangeScope is created by the CreateChangeScope 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.

Inheritance Hierarchy

System.Object
  Microsoft.Data.Entity.Design.Extensibility.EntityDesignerChangeScope

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

EntityDesignerChangeScope Members

Microsoft.Data.Entity.Design.Extensibility Namespace

Other Resources

Visual Studio Extensibility Developer Center

Developing Visual Studio Extensions