SchemaZen.Library.Models.Column.Column C# (CSharp) Method

Column() public method

public Column ( string name, string type, bool nullable, Default defaultValue ) : System
name string
type string
nullable bool
defaultValue Default
return System
        public Column(string name, string type, bool nullable, Default defaultValue)
        {
            Name = name;
            Type = type;
            Default = defaultValue;
            IsNullable = nullable;
        }

Same methods

Column::Column ( ) : System
Column::Column ( string name, string type, byte precision, int scale, bool nullable, Default defaultValue ) : System
Column::Column ( string name, string type, int length, bool nullable, Default defaultValue ) : System