Table of Contents

Class CommandsCreatedEventData

Namespace
GroupeIsa.Neos.Migration.Interceptor
Assembly
GroupeIsa.Neos.Migration.Abstractions.dll

Represents the data passed as an argument of a OnCommandsCreatedAsync(CommandsCreatedEventData, ICommandList) event.

public sealed class CommandsCreatedEventData
Inheritance
CommandsCreatedEventData
Inherited Members

Constructors

CommandsCreatedEventData(INeosSchema, INeosSchema)

Initializes a new instance of the CommandsCreatedEventData class.

public CommandsCreatedEventData(INeosSchema existingSchema, INeosSchema expectedSchema)

Parameters

existingSchema INeosSchema

Existing schema.

expectedSchema INeosSchema

Expected schema.

Properties

ExistingSchema

Gets the existing database schema.

public INeosSchema ExistingSchema { get; }

Property Value

INeosSchema

ExpectedSchema

Gets the expected database schema.

public INeosSchema ExpectedSchema { get; }

Property Value

INeosSchema