5 writes to tableName
System.Data (5)
fx\src\data\System\Data\DataTable.cs (5)
202this.tableName = tableName == null ? "" : tableName; 391tableName = info.GetString("DataTable.TableName"); 1699tableName = value; 1704tableName = value; 2212clone.tableName = tableName;
17 references to tableName
System.Data (17)
fx\src\data\System\Data\DataTable.cs (17)
1658return tableName; 1668if (String.Compare(tableName, value, true, currentLocale) != 0) { 1694if (tableName.Length != 0) { 1695dataSet.Tables.UnregisterName(tableName); 1702else if (String.Compare(tableName, value, false, currentLocale) != 0) { 2212clone.tableName = tableName; 4830if (this.tableName.Length == 0) { 4978if (this.tableName.Length == 0) { 5732if (Common.ADP.IsEmpty(this.tableName) && Common.ADP.IsEmpty(CurrentTableFullName)) 5737if (!Common.ADP.IsEmpty(this.tableName)) { 5739currentTable = ds.Tables[this.tableName, this.Namespace]; 5742int tableIndex = ds.Tables.InternalIndexOf(this.tableName); 5761if (!Common.ADP.IsEmpty(this.tableName)) { 5762qTableName = (this.Namespace.Length > 0)? (this.Namespace + ":" + this.tableName):this.tableName; 5819DataTable destinationTable = this.DataSet.Tables[tempTable.tableName, tempTable.Namespace]; 5820DataTable sourceTable = ds.Tables[tempTable.tableName, tempTable.Namespace];