Exemple #1
0
 /// <summary>
 /// Instantiates a new instance of <see cref="DcilColumn"/>
 /// </summary>
 public DcilColumn(string name, DcilDataType dataType, bool isNullable, bool isIdentity)
 {
     this._name       = name;
     this._dataType   = dataType;
     this._isNullable = isNullable;
     this._isIdentity = isIdentity;
 }
Exemple #2
0
		/// <summary>
		/// Instantiates a new instance of <see cref="DcilColumn"/>
		/// </summary>
		public DcilColumn(string name, DcilDataType dataType, bool isNullable, bool isIdentity)
		{
			this._name = name;
			this._dataType = dataType;
			this._isNullable = isNullable;
			this._isIdentity = isIdentity;
		}