示例#1
0
 public Column(string name, string type, bool nullable, Default defaultValue)
 {
     Name = name;
     Type = type;
     Default = defaultValue;
     IsNullable = nullable;
 }
示例#2
0
 public Column(string name, string type, byte precision, int scale, bool nullable, Default defaultValue)
     : this(name, type, nullable, defaultValue)
 {
     Precision = precision;
     Scale     = scale;
 }
示例#3
0
 public Column(string name, string type, int length, bool nullable, Default defaultValue)
     : this(name, type, nullable, defaultValue)
 {
     Length = length;
 }
示例#4
0
		public Column(string name, string type, byte precision, int scale, bool nullable, Default defaultValue)
			: this(name, type, nullable, defaultValue) {
			Precision = precision;
			Scale = scale;
		}
示例#5
0
		public Column(string name, string type, int length, bool nullable, Default defaultValue)
			: this(name, type, nullable, defaultValue) {
			Length = length;
		}