コード例 #1
0
ファイル: Column.cs プロジェクト: sethreno/schemazen
 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
ファイル: Column.cs プロジェクト: Zocdoc/schemazen
		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
ファイル: Column.cs プロジェクト: Zocdoc/schemazen
		public Column(string name, string type, int length, bool nullable, Default defaultValue)
			: this(name, type, nullable, defaultValue) {
			Length = length;
		}