Esempio n. 1
0
 /// <summary>
 /// Removes the table from database xml.
 /// </summary>
 /// <param name="table">The table to remove.</param>
 internal void RemoveTable(DBTable table)
 {
     this.tables.Remove(table);
     table.Xml.Remove();
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DBRow"/> class.
 /// </summary>
 /// <param name="table"><see cref="DBTable"/> that this row belongs to.</param>
 public DBRow(DBTable table) : this()
 {
     this.Table = table;
 }