System\Data\EntityModel\SchemaObjectModel\ReturnType.cs (10)
159if (!Utils.GetString(Schema, reader, out type))
175if (!Utils.ValidateDottedName(Schema, reader, type))
185if (Utils.GetString(Schema, reader, out entitySetName))
195if (Utils.GetString(Schema, reader, out entitySetPath))
302if (Schema.DataModel != SchemaDataModelOption.EntityDataModel)
304Debug.Assert(Schema.DataModel == SchemaDataModelOption.ProviderDataModel ||
305Schema.DataModel == SchemaDataModelOption.ProviderManifestModel, "Unexpected data model");
307if (Schema.DataModel == SchemaDataModelOption.ProviderManifestModel)
330Debug.Assert(Schema.DataModel == SchemaDataModelOption.ProviderDataModel, "Unexpected data model");
348if (Schema.SchemaVersion < XmlConstants.StoreVersionForV3)
System\Data\EntityModel\SchemaObjectModel\SchemaElement.cs (16)
227AddError(errorCode,severity,element.Schema.Location,element.LineNumber,element.LinePosition,message);
379if (Schema == null)
417bool success = Utils.GetUndottedName(Schema, reader, out name);
437if ( !Utils.GetDottedName(Schema,reader,out value) )
453if ( !Utils.GetInt(Schema, reader, out value) )
469if ( !Utils.GetByte(Schema, reader, out value) )
484if ( !Utils.GetBool(Schema,reader,out value) )
519if ( Schema != null )
520return Schema.Location;
580Schema.AddError(error);
602else if (!Schema.IsParseableXmlNamespace(attributeNamespace, true))
615if (string.IsNullOrEmpty(attributeNamespace) || Schema.IsParseableXmlNamespace(attributeNamespace, true))
683!Schema.IsParseableXmlNamespace(reader.NamespaceURI, false),
740if (!Schema.IsParseableXmlNamespace(elementNamespace, true) && this.ParentElement != null)
753if (string.IsNullOrEmpty(elementNamespace) || Schema.IsParseableXmlNamespace(reader.NamespaceURI, false))
763return reader.NamespaceURI == Schema.SchemaXmlNamespace && reader.LocalName == localName;