Example #1
0
 public Column(string name, string type, byte precision, int scale, bool @null, Default @default)
     : this(name, type, @null, @default)
 {
     Precision = precision;
     Scale     = scale;
 }
Example #2
0
 public Column(string name, string type, int length, bool @null, Default @default)
     : this(name, type, @null, @default)
 {
     Length = length;
 }
Example #3
0
 public Column(string name, string type, bool @null, Default @default)
 {
     Name    = name;
     Type    = type;
     Default = @default;
 }
Example #4
0
 public Column(string name, string type, byte precision, int scale, bool @null, Default @default)
     : this(name, type, @null, @default)
 {
     Precision = precision;
     Scale = scale;
 }
Example #5
0
 public Column(string name, string type, int length, bool @null, Default @default)
     : this(name, type, @null, @default)
 {
     Length = length;
 }
Example #6
0
 public Column(string name, string type, bool @null, Default @default)
 {
     Name = name;
     Type = type;
     Default = @default;
 }