27 references to EncodedTableName
System.Data.Common (27)
System\Data\DataViewManager.cs (1)
96
builder.Append(CultureInfo.InvariantCulture, $"<{dt.
EncodedTableName
} Sort=\"{ds.Sort}\" RowFilter=\"{ds.RowFilter}\" RowStateFilter=\"{ds.RowStateFilter}\"/>");
System\Data\xmlsaver.cs (18)
740
node.SetAttribute(Keywords.REF, top[i].
EncodedTableName
);
742
node.SetAttribute(Keywords.REF, ((string)_prefixes[top[i].Namespace]!) + ':' + top[i].
EncodedTableName
);
753
node.SetAttribute(Keywords.REF, ((string)_prefixes[top[i].Namespace]!) + ':' + top[i].
EncodedTableName
);
1161
root.SetAttribute(Keywords.MSD_PARENT, Keywords.MSDNS, rel.ParentKey.Table.
EncodedTableName
);
1162
root.SetAttribute(Keywords.MSD_CHILD, Keywords.MSDNS, rel.ChildKey.Table.
EncodedTableName
);
1741
root.SetAttribute(Keywords.NAME, table.
EncodedTableName
);
1938
NestedTable.SetAttribute(Keywords.REF, table.
EncodedTableName
);
1943
NestedTable.SetAttribute(Keywords.REF, childTable.
EncodedTableName
);
1963
NestedTable.SetAttribute(Keywords.REF, ((string)_prefixes[childTable.Namespace]!) + ':' + childTable.
EncodedTableName
);
2024
selector.SetAttribute(Keywords.XSD_XPATH, ".//" + xpathprefix + table.
EncodedTableName
);
2098
selector.SetAttribute(Keywords.XSD_XPATH, ".//" + xpathprefix + foreign.RelatedTable.
EncodedTableName
);
2170
selector.SetAttribute(Keywords.XSD_XPATH, ".//" + xpathprefix + table.
EncodedTableName
);
2449
_xmlw.WriteStartElement(prefix, row.Table.
EncodedTableName
, row.Table.Namespace);
2474
_xmlw.WriteStartElement(prefix, row.Table.
EncodedTableName
, row.Table.Namespace);
2523
_xmlw.WriteStartElement(tablePrefix, row.Table.
EncodedTableName
, row.Table.Namespace);
2831
XmlDataRowWriter(row, tempDT.
EncodedTableName
);
2909
XmlDataRowWriter(row, ((DataTable)_dTables[i]!).
EncodedTableName
);
3100
XmlDataRowWriter(r, dr.ChildTable.
EncodedTableName
);
System\Data\XMLSchema.cs (1)
917
if (((el.Name == null) && (el.RefName.Name == table.
EncodedTableName
&& el.RefName.Namespace == table.Namespace)) ||
System\Data\XmlToDatasetMap.cs (4)
71
_id.LocalName = table.
EncodedTableName
;
154
string? tableLocalName = nameTable.Get(table.
EncodedTableName
);
177
string _tableLocalName = table.
EncodedTableName
; // Table name
465
_lastTableSchemaInfo = (TableSchemaInfo)(fIgnoreNamespace ? _tableSchemaMap[table.
EncodedTableName
]! : _tableSchemaMap[table]!);
System\Xml\DataSetMappper.cs (2)
352
object idTable = GetIdentity(table.
EncodedTableName
, table.Namespace);
358
object idTable = GetIdentity(table.
EncodedTableName
, table.Namespace);
System\Xml\XmlDataDocument.cs (1)
1360
XmlBoundElement rowElement = new XmlBoundElement(string.Empty, table.
EncodedTableName
, table.Namespace, this);