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

Column() public method

public Column ( string name, string type, int length, bool nullable, Default defaultValue ) : System
name string
type string
length int
nullable bool
defaultValue Default
return System
        public Column(string name, string type, int length, bool nullable, Default defaultValue)
            : this(name, type, nullable, defaultValue)
        {
            Length = length;
        }

Same methods

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