5 writes to _tableName
System.Data.Common (5)
System\Data\DataTable.cs (5)
186_tableName = tableName ?? ""; 423_tableName = info.GetString("DataTable.TableName")!; 1819_tableName = value; 1825_tableName = value; 2398clone._tableName = _tableName;
17 references to _tableName
System.Data.Common (17)
System\Data\DataTable.cs (17)
1768get { return _tableName; } 1776if (string.Compare(_tableName, value, true, currentLocale) != 0) 1813if (_tableName.Length != 0) 1815_dataSet.Tables.UnregisterName(_tableName); 1822else if (string.Compare(_tableName, value, false, currentLocale) != 0) 2398clone._tableName = _tableName; 5378if (_tableName.Length == 0) 5543if (_tableName.Length == 0) 6448if (string.IsNullOrEmpty(_tableName) && string.IsNullOrEmpty(CurrentTableFullName)) 6455if (!string.IsNullOrEmpty(_tableName)) 6459currentTable = ds.Tables[_tableName, Namespace]; 6463int tableIndex = ds.Tables.InternalIndexOf(_tableName); 6486if (!string.IsNullOrEmpty(_tableName)) 6488qTableName = (Namespace.Length > 0) ? (Namespace + ":" + _tableName) : _tableName; 6556DataTable destinationTable = DataSet.Tables[tempTable._tableName, tempTable.Namespace]!; 6557DataTable sourceTable = ds.Tables[tempTable._tableName, tempTable.Namespace]!;