Table of Contents

Enum DefaultNullable

Namespace
LinqToDB.SqlQuery
Assembly
linq2db.dll

Specify how [NOT] NULL should be emitted for table columns in CREATE TABLE statement.

public enum DefaultNullable
Extension Methods

Fields

None = 0

No defaults available, both NULL and NOT NULL should be generated always.

NotNull = 2

Generate NULL only, NOT NULL is default behavior.

Null = 1

Generate NOT NULL only, NULL is default behavior.