예제 #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="column">Column of <see cref="DataTable"/> that should be wrapped to <see cref="LightDataColumn"/></param>
 /// <param name="table">Table that will contains this column</param>
 public LightDataColumn(DataColumn column, LightDataTable table)
 {
     Table       = table;
     ColumnName  = column.ColumnName;
     AllowDbNull = column.AllowDBNull;
     Ordinal     = column.Ordinal;
     Initialize(column);
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="column">Column of <see cref="DataTable"/> that should be wrapped to <see cref="LightDataColumn"/></param>
 /// <param name="table">Table that will contains this column</param>
 public LightDecimalDataColumn(DataColumn column, LightDataTable table) : base(column, table)
 {
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="column">Column of <see cref="DataTable"/> that should be wrapped to <see cref="LightDataColumn"/></param>
 /// <param name="table">Table that will contains this column</param>
 public LightInt64DataColumn(DataColumn column, LightDataTable table) : base(column, table)
 {
 }
 /// <summary>
 /// Contructor
 /// </summary>
 /// <param name="column">Column of <see cref="DataTable"/> that should be wrapped to <see cref="LightDataColumn"/></param>
 /// <param name="table">Table that will contains this column</param>
 public LightBooleanDataColumn(DataColumn column, LightDataTable table) : base(column, table)
 {
 }
예제 #5
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="column">column of <see cref="DataTable"/> that should be wrapped to <see cref="LightDataColumn"/></param>
 /// <param name="table">Table that will contains this column</param>
 public LightByteDataColumn(DataColumn column, LightDataTable table) : base(column, table)
 {
 }
예제 #6
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="column">Column of <see cref="DataTable"/> that should be wrapped to <see cref="LightDataColumn"/></param>
 /// <param name="table">Table that will contains this column</param>
 public LightStringDataColumn(DataColumn column, LightDataTable table) : base(column, table)
 {
 }