Enum DefaultNullable
Specify how [NOT] NULL should be emitted for table columns in CREATE TABLE statement.
public enum DefaultNullable
- Extension Methods
Fields
None = 0No defaults available, both
NULLandNOT NULLshould be generated always.NotNull = 2Generate
NULLonly,NOT NULLis default behavior.Null = 1Generate
NOT NULLonly,NULLis default behavior.