Table of Contents

Enum SqlDatabaseCreateMode

Namespace
LfrlAnvil.Sql
Assembly
LfrlAnvil.Sql.Core.dll

Represents the mode with which to create ISqlDatabase instances.

public enum SqlDatabaseCreateMode : byte

Fields

Commit = 2

Specifies that versions that haven't been applied to the database yet should be applied.

DryRun = 1

Specifies that versions that haven't been applied to the database yet should be ran in read-only mode. Such versions won't actually be applied to the database itself, but this mode can be useful for debugging created SQL statements that would be executed in Commit mode.

NoChanges = 0

Specifies that versions that haven't been applied to the database yet should not be invoked at all.