1 write to _ds
System.Data (1)
fx\src\data\System\Data\XMLSchema.cs (1)
576
_ds
= ds;
26 references to _ds
System.Data (26)
fx\src\data\System\Data\XMLSchema.cs (26)
359
DataTable table =
_ds
.Tables.GetTable(XmlConvert.DecodeName(typeName), element.QualifiedName.Namespace);
375
DataRelationCollection rels =
_ds
.Relations;
420
parent =
_ds
.Tables.GetTableSmart(parentName,parentNs);
425
child =
_ds
.Tables.GetTableSmart(childName,childNs);
441
_ds
.Relations.Add(relation);
1093
DataTable table =
_ds
.Tables.GetTableSmart(tableName,tableNs);
1192
DataTable table =
_ds
.Tables.GetTableSmart(tableName,tableNs);
1232
table =
_ds
.Tables.GetTable(typeName, _TableUri);
1291
if (!this.FromInference ||
_ds
.Tables.GetTable(typeName, _TableUri) == null) { // for inference; special case: add table if doesnot exists in collection
1292
_ds
.Tables.Add(table);
1343
table =
_ds
.Tables.GetTable(XmlConvert.DecodeName(typeName), _TableUri);
1407
_ds
.Tables.Add(table);
2216
int initialTableCount =
_ds
.Tables.Count; // just use for inference backward compatablity
2224
_ds
.Locale = new CultureInfo(value);
2228
_ds
.Locale = CultureInfo.InvariantCulture;
2234
_ds
.SetLocaleValue(CultureInfo.CurrentCulture, false);
2238
_ds
.SetLocaleValue(new CultureInfo(0x409), false);
2253
SetProperties(
_ds
, node.UnhandledAttributes);
2254
SetExtProperties(
_ds
, node.UnhandledAttributes);
2258
_ds
.DataSetName = XmlConvert.DecodeName(dsName);
2261
_ds
.Namespace = dsNamespace;
2264
_ds
.Prefix = GetPrefix(
_ds
.Namespace);
2281
DataTable tempTable =
_ds
.Tables.GetTable(XmlConvert.DecodeName(GetInstanceName((XmlSchemaElement)el)), node.QualifiedName.Namespace);
2344
List<DataTable> _tableList = new List<DataTable>(
_ds
.Tables.Count);
2348
_ds
.Tables.ReplaceFromInference(_tableList); // replace the list with the one in correct order: BackWard compatability for inference