5 writes to _tableName
System.Data.Common (5)
System\Data\DataTable.cs (5)
186_tableName = tableName ?? ""; 428_tableName = info.GetString("DataTable.TableName")!; 1824_tableName = value; 1830_tableName = value; 2403clone._tableName = _tableName;
17 references to _tableName
System.Data.Common (17)
System\Data\DataTable.cs (17)
1773get { return _tableName; } 1781if (string.Compare(_tableName, value, true, currentLocale) != 0) 1818if (_tableName.Length != 0) 1820_dataSet.Tables.UnregisterName(_tableName); 1827else if (string.Compare(_tableName, value, false, currentLocale) != 0) 2403clone._tableName = _tableName; 5397if (_tableName.Length == 0) 5570if (_tableName.Length == 0) 6490if (string.IsNullOrEmpty(_tableName) && string.IsNullOrEmpty(CurrentTableFullName)) 6497if (!string.IsNullOrEmpty(_tableName)) 6501currentTable = ds.Tables[_tableName, Namespace]; 6505int tableIndex = ds.Tables.InternalIndexOf(_tableName); 6528if (!string.IsNullOrEmpty(_tableName)) 6530qTableName = (Namespace.Length > 0) ? (Namespace + ":" + _tableName) : _tableName; 6598DataTable destinationTable = DataSet.Tables[tempTable._tableName, tempTable.Namespace]!; 6599DataTable sourceTable = ds.Tables[tempTable._tableName, tempTable.Namespace]!;