예제 #1
0
 public Column(string name, string type, bool nullable, Default defaultValue)
 {
     Name = name;
     Type = type;
     Default = defaultValue;
     IsNullable = nullable;
 }
예제 #2
0
파일: Column.cs 프로젝트: gcook17/schemazen
		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
파일: Column.cs 프로젝트: gcook17/schemazen
		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;
 }