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)
359DataTable table = _ds.Tables.GetTable(XmlConvert.DecodeName(typeName), element.QualifiedName.Namespace); 375DataRelationCollection rels = _ds.Relations; 420parent = _ds.Tables.GetTableSmart(parentName,parentNs); 425child = _ds.Tables.GetTableSmart(childName,childNs); 441_ds.Relations.Add(relation); 1093DataTable table = _ds.Tables.GetTableSmart(tableName,tableNs); 1192DataTable table = _ds.Tables.GetTableSmart(tableName,tableNs); 1232table = _ds.Tables.GetTable(typeName, _TableUri); 1291if (!this.FromInference ||_ds.Tables.GetTable(typeName, _TableUri) == null) { // for inference; special case: add table if doesnot exists in collection 1292_ds.Tables.Add(table); 1343table = _ds.Tables.GetTable(XmlConvert.DecodeName(typeName), _TableUri); 1407_ds.Tables.Add(table); 2216int 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); 2253SetProperties(_ds, node.UnhandledAttributes); 2254SetExtProperties(_ds, node.UnhandledAttributes); 2258_ds.DataSetName = XmlConvert.DecodeName(dsName); 2261_ds.Namespace = dsNamespace; 2264_ds.Prefix = GetPrefix(_ds.Namespace); 2281DataTable tempTable = _ds.Tables.GetTable(XmlConvert.DecodeName(GetInstanceName((XmlSchemaElement)el)), node.QualifiedName.Namespace); 2344List<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