1 write to SchemaXmlNamespace
System.Data.Entity (1)
System\Data\EntityModel\SchemaObjectModel\Schema.cs (1)
175this.SchemaXmlNamespace = sourceReader.NamespaceURI;
9 references to SchemaXmlNamespace
System.Data.Entity (9)
System\Data\EntityModel\SchemaObjectModel\Schema.cs (8)
178if (this.SchemaXmlNamespace == XmlConstants.ModelNamespace_1) 182else if (this.SchemaXmlNamespace == XmlConstants.ModelNamespace_1_1) 186else if (this.SchemaXmlNamespace == XmlConstants.ModelNamespace_2) 192Debug.Assert(this.SchemaXmlNamespace == XmlConstants.ModelNamespace_3, "Unknown namespace in CSDL"); 198if (this.SchemaXmlNamespace == XmlConstants.TargetNamespace_1) 202else if (this.SchemaXmlNamespace == XmlConstants.TargetNamespace_2) 208Debug.Assert(this.SchemaXmlNamespace == XmlConstants.TargetNamespace_3, "Unknown namespace in SSDL"); 223AddError(ErrorCode.UnexpectedXmlElement, EdmSchemaErrorSeverity.Error, System.Data.Entity.Strings.UnexpectedRootElement(sourceReader.NamespaceURI, sourceReader.LocalName, SchemaXmlNamespace));
System\Data\EntityModel\SchemaObjectModel\SchemaElement.cs (1)
763return reader.NamespaceURI == Schema.SchemaXmlNamespace && reader.LocalName == localName;