netFramework/Microsoft.OData.Edm.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.OData.Edm</name>
    </assembly>
    <members>
        <member name="T:Microsoft.OData.Edm.Cache`2">
            <summary>
            Provides a caching mechanism for semantic properties.
            </summary>
            <typeparam name="TContainer">Type of the element that contains the cached property</typeparam>
            <typeparam name="TProperty">Type of the cached property</typeparam>
        </member>
        <member name="T:Microsoft.OData.Edm.CacheHelper">
            <summary>
            Helper for Cache class.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlConstants">
            <summary>
            Constants for CSDL XML.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlConstants.EdmxVersion4">
            <summary>
            Version 4.0 of EDMX, defined in EDMX namespace "http://docs.oasis-open.org/odata/ns/edmx".
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlConstants.EdmxVersion401">
            <summary>
            Version 4.01 of EDMX, defined in EDMX namespace "http://docs.oasis-open.org/odata/ns/edmx".
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlConstants.EdmxVersionLatest">
            <summary>
            The current latest version of EDMX.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlConstants.EdmxVersionAnnotation">
            <summary>
            The local name of the annotation that stores EDMX version of a model.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlLocation">
            <summary>
            Defines a location in a CSDL file.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlLocation.Source">
            <summary>
            Gets the source of the file.
            </summary>
            <remarks>
            Value 'null' means the source is unknown.
            Empty value means there is no source (e.g., constructed from in-memory string).
            Non-empty value indicates there is a certain source.
            </remarks>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlLocation.LineNumber">
            <summary>
            Gets the line number in the file.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlLocation.LinePosition">
            <summary>
            Gets the position in the line.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlLocation.Path">
            <summary>
            Gets the path string.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlLocation.ToString">
            <summary>
            Gets a string representation of the location.
            </summary>
            <returns>A string representation of the location.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlReader">
            <summary>
            Provides CSDL parsing services for EDM models.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlReader.targetParsed">
            <summary>
            True when either Runtime or DataServices node have been processed.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlReader.ignoreUnexpectedAttributesAndElements">
            <summary>
            Ignore the unexpected attributes and elements.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlReader.source">
            <summary>
            Indicates where the document comes from.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.#ctor(System.Xml.XmlReader,System.Func{System.Uri,System.Xml.XmlReader})">
            <summary>
            Constructor
            </summary>
            <param name="reader">The XmlReader for current CSDL doc</param>
            <param name="getReferencedModelReaderFunc">The function to load referenced model xml. If null, will stop loading the referenced model.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParse(System.Xml.XmlReader,Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries parsing the given CSDL artifact for an IEdmModel.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="model">The model generated by parsing</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParse(System.Xml.XmlReader,System.Boolean,Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries parsing the given CSDL artifact for an IEdmModel.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="ignoreUnexpectedAttributesAndElements">Ignore the unexpected attributes and elements in schema.</param>
            <param name="model">The model generated by parsing</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.Parse(System.Xml.XmlReader)">
            <summary>
            Returns an IEdmModel for the given CSDL artifact.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <returns>The model generated by parsing.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParse(System.Xml.XmlReader,System.Func{System.Uri,System.Xml.XmlReader},Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries parsing the given CSDL artifact for an IEdmModel.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="getReferencedModelReaderFunc">The function to load referenced model xml. If null, will stop loading the referenced models. Normally it should throw no exception.</param>
            <param name="model">The model generated by parsing</param>
            <param name="errors">Errors reported while parsing.</param>
            <remarks>If getReferencedModelReaderFunc throws exception, it won't be caught internally but will be thrown out for caller to handle.</remarks>
            <returns>Success of the parse operation.</returns>
            <remarks>
            User should handle the disposal of XmlReader created by getReferencedModelReaderFunc.
            </remarks>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParse(System.Xml.XmlReader,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmModel},Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries parsing the given CSDL artifact for an IEdmModel.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="references">Models to be referenced by the created model.</param>
            <param name="model">The model generated by parsing</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParse(System.Xml.XmlReader,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmModel},System.Boolean,Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries parsing the given CSDL artifact for an IEdmModel.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="references">Models to be referenced by the created model.</param>
            <param name="includeDefaultVocabularies">A value indicating enable/disable the built-in vocabulary supporting.</param>
            <param name="model">The model generated by parsing</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParse(System.Xml.XmlReader,Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries parsing the given CSDL artifact for an IEdmModel.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="reference">Model to be referenced by the created model.</param>
            <param name="model">The model generated by parsing</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.Parse(System.Xml.XmlReader,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmModel})">
            <summary>
            Returns an IEdmModel for the given CSDL artifact.
            </summary>
            <param name="reader">XmlReader containing the EDMX artifact.</param>
            <param name="referencedModels">Models to be referenced by the created model.</param>
            <returns>The model generated by parsing.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.Parse(System.Xml.XmlReader,Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Returns an IEdmModel for the given CSDL artifact.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="referencedModel">Model to be referenced by the created model.</param>
            <returns>The model generated by parsing.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.Parse(System.Xml.XmlReader,System.Func{System.Uri,System.Xml.XmlReader})">
            <summary>
            Returns an IEdmModel for the given CSDL artifact.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="getReferencedModelReaderFunc">The function to load referenced model xml. If null, will stop loading the referenced model.</param>
            <returns>The model generated by parsing.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParse(System.Xml.XmlReader,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmModel},Microsoft.OData.Edm.Csdl.CsdlReaderSettings,Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries parsing the given CSDL artifact for an IEdmModel.
            </summary>
            <param name="reader">XmlReader containing the CSDL artifact.</param>
            <param name="references">Models to be referenced by the created model.</param>
            <param name="settings">CsdlReader settings for current parser.</param>
            <param name="model">The model generated by parsing</param>
            <param name="errors">Errors reported while parsing.</param>
            <remarks>If getReferencedModelReaderFunc throws exception, it won't be caught internally but will be thrown out for caller to handle.</remarks>
            <returns>Success of the parse operation.</returns>
            <remarks>
            User should handle the disposal of XmlReader created by getReferencedModelReaderFunc.
            </remarks>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParseVersion(System.String,System.Version@)">
            <summary>
            <see cref="T:System.Version"/>TryParse does not exist on all platforms, so implementing it here.
            </summary>
            <param name="input">Input string.</param>
            <param name="version">Parsed version.</param>
            <returns>False in case of failure.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.LoadAndParseReferencedCsdlFiles(System.Version)">
            <summary>
            Load and parse the referenced model but ignored any further referenced model.
            </summary>
            <param name="mainCsdlVersion">The main CSDL version.</param>
            <returns>A list of CsdlModel (no semantics) of the referenced models.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.TryParseCsdlFileToCsdlModel(System.Version@,Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel@)">
            <summary>
            Parse CSDL xml doc into CsdlModel, error messages are stored in this.errors.
            </summary>
            <param name="csdlVersion">The csdlVersion out.</param>
            <param name="csdlModel">The CsdlModel out.</param>
            <returns>True if succeeded.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.HasIntolerableError">
            <summary>
            Determine if there is any error that could not be ignored.
            </summary>
            <returns>True if there is any error that could not be ignored.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.ParseElement(System.String,System.Collections.Generic.Dictionary{System.String,System.Action})">
            <summary>
            All parse functions start with the reader pointing at the start tag of an element, and end after consuming the ending tag for the element.
            </summary>
            <param name="elementName">The current element name to be parsed.</param>
            <param name="elementParsers">The parsers for child elements of the current element.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReader.ParseReferenceElement">
            <summary>
            Parse one Edm reference using CsdlReferenceParser
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlReaderSettingsBase">
            <summary>
            The base setting for CSDL reader
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlReaderSettings">
            <summary>
            Settings used when parsing CSDL document.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlReaderSettings.#ctor">
            <summary>
            Default constructor.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlReaderSettings.GetReferencedModelReaderFunc">
            <summary>
            The function to load referenced model xml. If null, will stop loading the referenced models. Normally it should throw no exception.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlReaderSettings.IgnoreUnexpectedAttributesAndElements">
            <summary>
            Ignore the unexpected attributes and elements in schema.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlTarget">
            <summary>
            Specifies what target of a CSDL doc.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlTarget.EntityFramework">
            <summary>
            The target is Entity Framework.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlTarget.OData">
            <summary>
            The target is OData.
            </summary>
        </member>
        <!-- Badly formed XML comment ignored for member "T:Microsoft.OData.Edm.Csdl.CsdlWriter" -->
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlWriter.#ctor(Microsoft.OData.Edm.IEdmModel,System.Version)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.OData.Edm.Csdl.CsdlWriter"/> class.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="edmxVersion">The Edmx version.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlWriter.TryWriteCsdl(Microsoft.OData.Edm.IEdmModel,System.Xml.XmlWriter,Microsoft.OData.Edm.Csdl.CsdlTarget,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Outputs a CSDL XML artifact to the provided <see cref="T:System.Xml.XmlWriter"/>.
            </summary>
            <param name="model">Model to be written.</param>
            <param name="writer">XmlWriter the generated CSDL will be written to.</param>
            <param name="target">Target implementation of the CSDL being generated.</param>
            <param name="errors">Errors that prevented successful serialization, or no errors if serialization was successful. </param>
            <returns>A value indicating whether serialization was successful.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlWriter.WriteCsdl">
            <summary>
            Write CSDL output.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlWriter.GetVersionString(System.Version)">
            <summary>
            Gets the string form of the EdmVersion.
            Note that Version 4.01 needs two digits of minor version precision.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlXmlWriter">
            <summary>
            Provides CSDL XML serialization for EDM models.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlXmlWriter.#ctor(Microsoft.OData.Edm.IEdmModel,System.Xml.XmlWriter,System.Version,Microsoft.OData.Edm.Csdl.CsdlTarget)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.OData.Edm.Csdl.CsdlXmlWriter"/> class.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="writer">The XML writer.</param>
            <param name="edmxVersion">The Edmx version.</param>
            <param name="target">The CSDL target.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlXmlWriter.WriteCsdl">
            <summary>
            Write the CSDL XML.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.EdmEnumValueParser">
            <summary>
            Internal parser to parse enum value in csdl.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmEnumValueParser.TryParseEnumMember(System.String,Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.EdmLocation,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmEnumMember}@)">
            <summary>
            Try parse enum members specified in a string value from declared schema types
            </summary>
            <param name="value">Enum value string</param>
            <param name="model">The model for resolving enum type.</param>
            <param name="location">The location of the enum member in csdl</param>
            <param name="result">Parsed enum members</param>
            <returns>True for successfully parsed, false for failed</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmEnumValueParser.TryParseJsonEnumMember(System.String,Microsoft.OData.Edm.IEdmEnumType,Microsoft.OData.Edm.EdmLocation,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmEnumMember}@)">
            <summary>
            Try parse enum members specified in a string value from declared schema types.
            </summary>
            <param name="value">Enum value string</param>
            <param name="enumType">The enum type.</param>
            <param name="location">The location of the enum member in csdl</param>
            <param name="result">Parsed enum members</param>
            <returns>True for successfully parsed, false for failed</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmEnumValueParser.IsEnumIntegerType(Microsoft.OData.Edm.IEdmEnumType)">
            <summary>
            Determine if the underlying type of the enum type is integer type (byte, sbyte, int16, int32, int64).
            </summary>
            <param name="enumType">The enum type.</param>
            <returns>True if the underlying type of enum type is integer type.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.EdmParseException">
            <summary>
            Exception type representing a failure to parse an EDM document. Carries the set of errors along with it.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmParseException.#ctor(System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError})">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.Csdl.EdmParseException"/> class.
            </summary>
            <param name="parseErrors">The errors encountered while parsing.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmParseException.#ctor(System.Collections.Generic.List{Microsoft.OData.Edm.Validation.EdmError})">
            <summary>
            Prevents a default instance of the <see cref="T:Microsoft.OData.Edm.Csdl.EdmParseException"/> class from being created.
            </summary>
            <param name="parseErrors">The parse errors.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.EdmParseException.Errors">
            <summary>
            Gets the set of errors that were encountered while parsing.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmParseException.ConstructMessage(System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError})">
            <summary>
            Constructs an appropriate exception message from the set of parsing errors.
            </summary>
            <param name="parseErrors">The parse errors.</param>
            <returns>The exception message.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.EdmValueParser">
            <summary>
            Contains xml parsing methods for Edm.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.EdmValueParser.DayTimeDurationValidator">
            <summary>
            This pattern eliminates all durations with year or month fields, leaving only those with day, hour, minutes, and/or seconds fields
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.ParseDuration(System.String)">
            <summary>
            Converts a string to a TimeSpan.
            </summary>
            <param name="value">The string to be converted. The string must be an edm:Duration expression</param>
            <returns>A TimeSpan equivalent of the string.</returns>
            <exception cref="T:System.FormatException">Throws if the given string is not an edm:Duration expression</exception>
            <exception cref="T:System.OverflowException">Throws if the given duration is greater than P10675199DT2H48M5.4775807S or less than P10675199DT2H48M5.4775807S</exception>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseBinary(System.String,System.Byte[]@)">
            <summary>
            Attempts to parse a byte[] value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The byte[] resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseBool(System.String,System.Nullable{System.Boolean}@)">
            <summary>
            Attempts to parse a bool value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The bool resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseDuration(System.String,System.Nullable{System.TimeSpan}@)">
            <summary>
            Attempts to parse a TimeSpan value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The TimeSpan resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseDateTimeOffset(System.String,System.Nullable{System.DateTimeOffset}@)">
            <summary>
            Attempts to parse a DateTimeOffset value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The DateTimeOffset resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseInt(System.String,System.Nullable{System.Int32}@)">
            <summary>
            Attempts to parse a int value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The int resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseLong(System.String,System.Nullable{System.Int64}@)">
            <summary>
            Attempts to parse a long value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The long resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseDecimal(System.String,System.Nullable{System.Decimal}@)">
            <summary>
            Attempts to parse a decimal value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The decimal resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseFloat(System.String,System.Nullable{System.Double}@)">
            <summary>
            Attempts to parse a double value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The double resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseGuid(System.String,System.Nullable{System.Guid}@)">
            <summary>
            Attempts to parse a Guid value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The Guid resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseDate(System.String,System.Nullable{Microsoft.OData.Edm.Date}@)">
            <summary>
            Attempts to parse a Date value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The Date resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseTimeOfDay(System.String,System.Nullable{Microsoft.OData.Edm.TimeOfDay}@)">
            <summary>
            Attempts to parse a TimeOfDay value from the specified text.
            </summary>
            <param name="value">Input string</param>
            <param name="result">The TimeOfDay resulting from parsing the string value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueParser.TryParseCharAsBinary(System.Char,System.Byte@)">
            <summary>
            Attempts to parse a byte value from the specified char.
            </summary>
            <param name="c">Input char</param>
            <param name="b">The byte resulting from parsing the char value</param>
            <returns>true if the value was parsed successfully, false otherwise</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.EdmValueWriter">
            <summary>
            Contains methods to convert primitive values to their string representation.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.EdmValueWriter.Hex">
            <summary>
            Characters used in string representations of hexadecimal values
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.PrimitiveValueAsXml(Microsoft.OData.Edm.Vocabularies.IEdmPrimitiveValue)">
            <summary>
            Converts the IEdmPrimitiveValue to a String.
            </summary>
            <param name="v">The value to convert.</param>
            <returns>A string representation of the IEdmPrimitiveValue.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.StringAsXml(System.String)">
            <summary>
            Converts the String to a String.
            </summary>
            <param name="s">The value to convert.</param>
            <returns>The value to convert.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.BinaryAsXml(System.Byte[])">
            <summary>
            Converts the Byte[] to a String.
            </summary>
            <param name="binary">The value to convert.</param>
            <returns>A string representation of the Byte[].</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.BooleanAsXml(System.Boolean)">
            <summary>
            Converts the Boolean to a String.
            </summary>
            <param name="b">The value to convert.</param>
            <returns>A string representation of the Boolean, that is, "true" or "false".</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.BooleanAsXml(System.Nullable{System.Boolean})">
            <summary>
            Converts the Boolean? to a String.
            </summary>
            <param name="b">The value to convert.</param>
            <returns>A string representation of the Boolean, that is, "true" or "false".</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.IntAsXml(System.Int32)">
            <summary>
            Converts the Int32 to a String.
            </summary>
            <param name="i">The value to convert</param>
            <returns>A string representation of the Int32.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.IntAsXml(System.Nullable{System.Int32})">
            <summary>
            Converts the Int32? to a String.
            </summary>
            <param name="i">The value to convert</param>
            <returns>A string representation of the Int32.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.LongAsXml(System.Int64)">
            <summary>
            Converts the Int64 to a String.
            </summary>
            <param name="l">The value to convert.</param>
            <returns>A string representation of the Int64.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.FloatAsXml(System.Double)">
            <summary>
            Converts the Double to a String.
            </summary>
            <param name="f">The value to convert.</param>
            <returns>A string representation of the Double.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.DecimalAsXml(System.Decimal)">
            <summary>
            Converts the Decimal to a String.
            </summary>
            <param name="d">The value to convert.</param>
            <returns>A string representation of the Decimal.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.DurationAsXml(System.TimeSpan)">
            <summary>
            Converts the TimeSpan to a String.
            </summary>
            <param name="d">The value to convert.</param>
            <returns>A string representation of the TimeSpan.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.DateTimeOffsetAsXml(System.DateTimeOffset)">
            <summary>
            Converts the DateTimeOffset to a String.
            </summary>
            <param name="d">The System.DateTimeOffset to be converted.</param>
            <returns>A System.String representation of the supplied System.DateTimeOffset.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.DateAsXml(Microsoft.OData.Edm.Date)">
            <summary>
            Converts the Date to a String.
            </summary>
            <param name="d">The <see cref="T:Microsoft.OData.Edm.Date"/> to be converted</param>
            <returns>A System.String representation of the supplied <see cref="T:Microsoft.OData.Edm.Date"/>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.TimeOfDayAsXml(Microsoft.OData.Edm.TimeOfDay)">
            <summary>
            Converts the TimeOfDay to a String.
            </summary>
            <param name="time">The <see cref="T:Microsoft.OData.Edm.TimeOfDay"/> to be converted</param>
            <returns>A System.String representation of the supplied <see cref="T:Microsoft.OData.Edm.TimeOfDay"/>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.GuidAsXml(System.Guid)">
            <summary>
            Converts the Guid to a String.
            </summary>
            <param name="g">The value to convert.</param>
            <returns>A string representation of the Guid.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.EdmValueWriter.UriAsXml(System.Uri)">
            <summary>
            Converts the Uri to a String.
            </summary>
            <param name="uri">The value to convert.</param>
            <returns>A string representation of the Uri.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAbstractNavigationSource">
            <summary>
            Represents an abstract CSDL navigation source.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAction">
            <summary>
            Represents a CSDL Action.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAction.#ctor(System.String,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationParameter},Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationReturn,System.Boolean,System.String,Microsoft.OData.Edm.Csdl.CsdlLocation)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAction"/> class.
            </summary>
            <param name="name">The name.</param>
            <param name="parameters">The parameters.</param>
            <param name="operationReturn">The return of the action.</param>
            <param name="isBound">if set to <c>true</c> [is bound].</param>
            <param name="entitySetPath">The entity set path.</param>
            <param name="location">The location in the csdl document of the action.</param>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlActionImport">
            <summary>
            Represents a CSDL action import.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotation">
            <summary>
            Common type for a CSDL annotation.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotation.Expression">
            <summary>
            Gets the expression, it could be null if the annotation uses the term's default.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotationPathExpression">
            <summary>
            Represents a CSDL annotation Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotations">
            <summary>
            Represents a CSDL Annotations element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlBinaryTypeReference">
            <summary>
            Represents a reference to a CSDL Binary type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlCollectionExpression">
            <summary>
            Represents a CSDL Collection expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlCollectionType">
            <summary>
            Represents a CSDL collection type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlComplexType">
            <summary>
            Represents a CSDL complex type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlConstantExpression">
            <summary>
            Represents a CSDL constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlDecimalTypeReference">
            <summary>
            Represents a reference to a CSDL decimal type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlDirectValueAnnotation">
            <summary>
            Represents a CSDL annotation.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlElement">
            <summary>
            Common base class for CSDL elements.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEntityContainer">
            <summary>
            Represents a CSDL entity container.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEntityReferenceType">
            <summary>
            Represents a CSDL entity reference type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEntitySet">
            <summary>
            Represents a CSDL Entity Set.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEntityType">
            <summary>
            Represents a CSDL entity type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEnumMember">
            <summary>
            Represents a CSDL enumeration type member.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEnumMember.Value">
            <summary>
            Gets or sets the underlying type value of the member.
            Value can be null only during deserialization of the declaring enumeration type.
            When the type's deserialization is complete, all its members get their values assigned.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEnumType">
            <summary>
            Represents a CSDL enumeration type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlExpressionBase">
            <summary>
            Common base type for a CSDL expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlExpressionTypeReference">
            <summary>
            Represents a CSDL type reference based on a type expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlFunction">
            <summary>
            Represents a CSDL Function.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlFunction.#ctor(System.String,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationParameter},Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationReturn,System.Boolean,System.String,System.Boolean,Microsoft.OData.Edm.Csdl.CsdlLocation)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlFunction"/> class.
            </summary>
            <param name="name">The name.</param>
            <param name="parameters">The parameters.</param>
            <param name="operationReturn">The return of the function.</param>
            <param name="isBound">if set to <c>true</c> [is bound].</param>
            <param name="entitySetPath">The entity set path.</param>
            <param name="isComposable">if set to <c>true</c> [is composable].</param>
            <param name="location">The location in the csdl document of the function.</param>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlFunctionBase">
            <summary>
            Represents a base class for CSDL functions and operation imports.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlFunctionImport">
            <summary>
            Represents a CSDL function import.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlIncludeAnnotations.TermNamespace">
            <summary>
            Get the term namespace.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlIncludeAnnotations.Qualifier">
            <summary>
            Gets the qualifier.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlIncludeAnnotations.TargetNamespace">
            <summary>
            Gets the target namespace.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlKey">
            <summary>
            Represents a CSDL key.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel">
            <summary>
            Represents a CSDL model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel.CurrentModelReferences">
            <summary>
            Represents current model's $lt;edmx:Reference /&gt;
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel.ParentModelReferences">
            <summary>
            Represents parent model's $lt;edmx:Reference ... /&gt;
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel.AddCurrentModelReferences(System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlReference})">
            <summary>
            Adds from current model.
            </summary>
            <param name="referencesToAdd">The items to add.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel.AddParentModelReferences(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlReference)">
            <summary>
            Adds from main model.
            </summary>
            <param name="referenceToAdd">The IEdmReference to add.</param>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNamedElement">
            <summary>
            Common base class for all named CSDL elements.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNamedStructuredType">
            <summary>
            Common base class for CSDL entity and complex types.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNamedTypeReference">
            <summary>
            Represents a CSDL type reference based on a type referenced by name.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNavigationProperty">
            <summary>
            Represents a CSDL navigation property.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNavigationPropertyBinding">
            <summary>
            Represents a CSDL Navigation Property Binding.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNavigationPropertyPathExpression">
            <summary>
            Represents a CSDL navigation property Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOnDelete">
            <summary>
            Represents a CSDL "on delete" action.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperation">
            <summary>
            Represents a CSDL Operation.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperation.#ctor(System.String,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationParameter},Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationReturn,System.Boolean,System.String,Microsoft.OData.Edm.Csdl.CsdlLocation)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAction"/> class.
            </summary>
            <param name="name">The name.</param>
            <param name="parameters">The parameters.</param>
            <param name="operationReturn">The operation return.</param>
            <param name="isBound">if set to <c>true</c> [is bound].</param>
            <param name="entitySetPath">The entity set path.</param>
            <param name="location">The location.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperation.IsBound">
            <summary>
            Gets a value indicating whether this instance is bound.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperation.EntitySetPath">
            <summary>
            Gets the entity set path.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationImport">
            <summary>
            Represents a CSDL operation import.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationImport.SchemaOperationQualifiedTypeName">
            <summary>
            Gets the name of the schema operation qualified type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationParameter">
            <summary>
            Represents a CSDL operation parameter.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlOperationReturn">
            <summary>
            Represents a CSDL function return type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlPathExpression">
            <summary>
            Represents a CSDL Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlPrimitiveTypeReference">
            <summary>
            Represents a reference to a CSDL primitive type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlProperty">
            <summary>
            Represents a CSDL property.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlPropertyPathExpression">
            <summary>
            Represents a CSDL property Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlPropertyReference">
            <summary>
            Represents a CSDL property reference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlPropertyValue">
            <summary>
            Represents a CSDL property value in an annotation.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlRecordExpression">
            <summary>
            Represents a CSDL Record expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlReferentialConstraint">
            <summary>
            Represents a CSDL referential constraint.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlReferentialConstraintRole">
            <summary>
            Represents a CSDL referential constraint role.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlSchema">
            <summary>
            Represents a CSDL schema.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlSingleton">
            <summary>
            Represents a CSDL Singleton.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlStringTypeReference">
            <summary>
            Represents a reference to a CSDL String type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlStructuredType">
            <summary>
            Common base class for CSDL entity and complex Types.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlTemporalTypeReference">
            <summary>
            Represents a reference to a CSDL temporal type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlTerm">
            <summary>
            Represents a CSDL term.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlTypeDefinition">
            <summary>
            Represents a CSDL type definition.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlTypeReference">
            <summary>
            Base type for the two kinds of type reference: <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNamedTypeReference"/> and <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlExpressionTypeReference"/>.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlUntypedTypeReference">
            <summary>
            Represents a reference to a CSDL Untyped type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.ICsdlTypeExpression">
            <summary>
            Represents an inline type expression, such as <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlCollectionType"/> and <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlEntityReferenceType"/>
            in the context of <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlExpressionTypeReference"/>.
            Note that nominal type declarations, such as entity, complex and primitive types, are not considered to be type expressions in the context
            of <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlExpressionTypeReference"/> - these types are handled in <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlNamedTypeReference"/>.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.Parsing.Common.EdmXmlDocumentParser`1.OptionalScale(System.String)">
            <summary>
            Parses the scale attribute if it's set.
            </summary>
            <param name="attributeName">The name of the attribute.</param>
            <returns>The parsed scale value.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.Common.XmlDocumentParser">
            <summary>
            Base class for parsers of XML documents
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.CsdlDocumentParser">
            <summary>
            CSDL document (Schema) parser.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.CsdlDocumentParserBase`1">
            <summary>
            CSDL document xml base parser, mainly for annotation value and type parser.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.CsdlParser">
            <summary>
            Provides for the loading and conversion of one or more CSDL XML readers into Entity Data Model.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Parsing.CsdlReferenceParser">
            <summary>
            CSDL document (Edm reference) parser.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.SchemaReader">
            <summary>
            Provides Schema parsing services for EDM models.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SchemaReader.TryParse(System.Collections.Generic.IEnumerable{System.Xml.XmlReader},Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Returns an IEdmModel for the given Schema artifacts.
            </summary>
            <param name="readers">Collection of XmlReaders containing the Schema artifacts.</param>
            <param name="model">The model generated by parsing.</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SchemaReader.TryParse(System.Collections.Generic.IEnumerable{System.Xml.XmlReader},Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Returns an IEdmModel for the given Schema artifacts.
            </summary>
            <param name="readers">Collection of XmlReaders containing the Schema artifacts.</param>
            <param name="reference">Model to be references by the created model.</param>
            <param name="model">The model generated by parsing.</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SchemaReader.TryParse(System.Collections.Generic.IEnumerable{System.Xml.XmlReader},System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmModel},Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Returns an IEdmModel for the given Schema artifacts.
            </summary>
            <param name="readers">Collection of XmlReaders containing the Schema artifacts.</param>
            <param name="references">Models to be references by the created model.</param>
            <param name="model">The model generated by parsing.</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SchemaReader.TryParse(System.Collections.Generic.IEnumerable{System.Xml.XmlReader},System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmModel},System.Boolean,Microsoft.OData.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Returns an IEdmModel for the given Schema artifacts.
            </summary>
            <param name="readers">Collection of XmlReaders containing the Schema artifacts.</param>
            <param name="references">Models to be references by the created model.</param>
            <param name="includeDefaultVocabularies">A value indicating enable/disable the built-in vocabulary supporting.</param>
            <param name="model">The model generated by parsing.</param>
            <param name="errors">Errors reported while parsing.</param>
            <returns>Success of the parse operation.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.SchemaWriter">
            <summary>
            Provides Schema serialization services for EDM models.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SchemaWriter.TryWriteSchema(Microsoft.OData.Edm.IEdmModel,System.Xml.XmlWriter,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Outputs a Schema artifact to the provided writer.
            </summary>
            <param name="model">Model to be written.</param>
            <param name="writer">XmlWriter the generated Schema will be written to.</param>
            <param name="errors">Errors that prevented successful serialization, or no errors if serialization was successful. </param>
            <returns>A value indicating whether serialization was successful.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SchemaWriter.TryWriteSchema(Microsoft.OData.Edm.IEdmModel,System.Func{System.String,System.Xml.XmlWriter},System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Outputs Schema artifacts to the provided writers.
            </summary>
            <param name="model">Model to be written.</param>
            <param name="writerProvider">A delegate that takes in a Schema namespace name and returns an XmlWriter to write the Schema to.</param>
            <param name="errors">Errors that prevented successful serialization, or no errors if serialization was successful. </param>
            <returns>A value indicating whether serialization was successful.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedAction">
            <summary>
            Represents information about an EDM action that failed to resolve.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedFunction">
            <summary>
            Represents information about an EDM function that failed to resolve.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedNavigationPropertyPath">
            <summary>
            Represents a navigation property path that could not be resolved.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedOperation">
            <summary>
            Represents information about an EDM operation that failed to resolve.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedOperation.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedType">
            <summary>
            Represents information about an EDM type definition that failed to resolve.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedType.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.UnresolvedVocabularyTerm.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsAction">
            <summary>
            Provides semantics for a CsdlAction
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsAction.#ctor(Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema,Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAction)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsAction"/> class.
            </summary>
            <param name="context">The context.</param>
            <param name="action">The action.</param>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsAnnotationPathExpression">
            <summary>
            Provides semantics for a Csdl Annotation Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsAnnotations">
            <summary>
            Provides semantics for an out-of-line CSDL Annotations.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsBinaryConstantExpression">
            <summary>
            Provides semantics for a Csdl binary constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsBinaryTypeReference">
            <summary>
            Provides the semantics of a reference to an EDM Binary type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsBooleanConstantExpression">
            <summary>
            Provides semantics for a Csdl Bool constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsCollectionExpression">
            <summary>
            Provides semantics for a Csdl collection expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsCollectionTypeDefinition">
            <summary>
            Provides semantics for CsdlCollectionType.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsComplexTypeDefinition">
            <summary>
            Provides semantics for CsdlComplexType.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsComplexTypeDefinition.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsDateConstantExpression">
            <summary>
            Provides semantics for a Csdl date constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsDateTimeOffsetConstantExpression">
            <summary>
            Provides semantics for a Csdl datetime with offset constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsDecimalConstantExpression">
            <summary>
            Provides semantics for a Csdl Decimal constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsDecimalTypeReference">
            <summary>
            Provides the semantics of a reference to an EDM Decimal type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsDirectValueAnnotation">
            <summary>
            Provides semantics for a CsdlDirectValueAnnotation.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsDirectValueAnnotationsManager">
            <summary>
            Provides a CSDL-specific annotations manager.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsDurationConstantExpression">
            <summary>
            Provides semantics for a Csdl duration constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsElement">
            <summary>
            Common base class for CsdlSemantics classes that have Annotations.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsElement.GetAnnotationFullQualifiedName(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Gets the cached annotation full qualified name.
            </summary>
            <param name="element">This element as <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable"/>.</param>
            <returns>The cached annotation full qualified name.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsElement.AllocateAndAdd``1(System.Collections.Generic.List{``0},``0)">
            <summary>
            Allocates a new list if needed, and adds the item to the list.
            </summary>
            <typeparam name="T">Type of the list.</typeparam>
            <param name="list">List to add the item to.</param>
            <param name="item">Item being added.</param>
            <returns>List containing then new item.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEntityContainer">
            <summary>
            Provides semantics for CsdlEntityContainer.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEntityContainer.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEntityReferenceTypeDefinition">
            <summary>
            Provides semantics for CsdlEntityTypeReference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEntitySet">
            <summary>
            Provides semantics for CsdlEntitySet.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEntityTypeDefinition">
            <summary>
            Provides semantics for CsdlEntityType.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEntityTypeDefinition.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEnumMember">
            <summary>
            Provides semantics for a CsdlEnumMember.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsEnumTypeDefinition">
            <summary>
            Provides semantics for CsdlEnumType.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsFloatingConstantExpression">
            <summary>
            Provides semantics for a Csdl Float constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsFunction">
            <summary>
            Provides semantics for a CsdlFunction
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsGuidConstantExpression">
            <summary>
            Provides semantics for a Csdl guid constant expression.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsInclude.Namespace">
            <summary>
            Gets the namespace to include.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsIntConstantExpression">
            <summary>
            Provides semantics for a Csdl Int constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel">
            <summary>
            Provides semantics for one CsdlModel and its referenced CsdlModels.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.#ctor(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel,Microsoft.OData.Edm.Vocabularies.IEdmDirectValueAnnotationsManager,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmModel},System.Boolean)">
            <summary>
            Constructor
            </summary>
            <param name="astModel">The raw CsdlModel.</param>
            <param name="annotationsManager">The IEdmDirectValueAnnotationsManager.</param>
            <param name="referencedModels">The IEdmModels to be referenced. if any element or namespace is not supposed to be include, you should have removed it before passing to this constructor.</param>
            <param name="includeDefaultVocabularies">A value indicating enable/disable the built-in vocabulary supporting.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.#ctor(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel,Microsoft.OData.Edm.Vocabularies.IEdmDirectValueAnnotationsManager,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel},System.Boolean)">
            <summary>
            Constructor
            </summary>
            <param name="mainCsdlModel">The main raw CsdlModel.</param>
            <param name="annotationsManager">The IEdmDirectValueAnnotationsManager.</param>
            <param name="referencedCsdlModels">The referenced raw CsdlModels.</param>
            <param name="includeDefaultVocabularies">A value indicating enable/disable the built-in vocabulary supporting.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.#ctor(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlModel,Microsoft.OData.Edm.Vocabularies.IEdmDirectValueAnnotationsManager,Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel,System.Boolean)">
            <summary>
            Constructor for creating a referenced model, is private and only called by the above constructor.
            </summary>
            <param name="referencedCsdlModel">The referenced raw CsdlModel.</param>
            <param name="annotationsManager">The IEdmDirectValueAnnotationsManager.</param>
            <param name="mainCsdlSemanticsModel">The CsdlSemanticsModel that will reference this new CsdlSemanticsModel. </param>
            <param name="includeDefaultVocabularies">A value indicating enable/disable the built-in vocabulary supporting.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.Errors">
            <summary>
            Gets an error if one exists with the current object.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.MainModel">
            <summary>
            Gets the main model that is referencing this model. The value may be null.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.FindDeclaredVocabularyAnnotations(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Searches for vocabulary annotations specified by this model.
            </summary>
            <param name="element">The annotated element.</param>
            <returns>The vocabulary annotations for the element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.AddSchemaIfReferenced(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlSchema,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlReference})">
            <summary>
            Adds the specified <paramref name="schema"/> to this model if
            the schema's namespace or annotations are referenced by the parent model
            </summary>
            <param name="schema">The schema to add</param>
            <param name="parentReferences">The <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlReference"/>s of the parent model.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.ProcessSchemaParentReferences(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlSchema,Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlReference},System.Boolean@,System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlIncludeAnnotations}}@)">
            <summary>
            Process the <see cref="T:Microsoft.OData.Edm.IEdmReference"/>s of the parent model to
            figure out whether the schema's types (entity types, enums, containers, etc.) and annotations should
            be imported
            </summary>
            <param name="schema">The schema to process</param>
            <param name="schemaWrapper">The <see cref="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema"/> wrapper of <paramref name="schema"/></param>
            <param name="parentReferences">The references in the model that contains the <paramref name="schema"/></param>
            <param name="shouldAddSchemaElements">Whether schema types such entity types, operations, enums, etc. should be added</param>
            <param name="includeAnnotationsIndex">Cache of the schema's out-of-line <see cref="T:Microsoft.OData.Edm.IEdmIncludeAnnotations"/>s indexed by the term namespace</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.AddSchemaElements(Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema)">
            <summary>
            Registers schema elements (entity types, operations, entity containers, etc.) from the
            specified schema into the model.
            </summary>
            <param name="schemaWrapper">The <see cref="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema"/> to add elements from</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.AddOutOfLineAnnotationsFromSchema(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlSchema,Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema,System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlIncludeAnnotations}})">
            <summary>
            Adds out-of-line annotations from the specified schema
            if they are referenced in the <paramref name="includeAnnotationsIndex"/> cache.
            </summary>
            <param name="schema">The schema to add annotations from.</param>
            <param name="schemaWrapper">The <see cref="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema"/> wrapper for the provided schema</param>
            <param name="includeAnnotationsIndex">Cache of the schema's out-of-line <see cref="T:Microsoft.OData.Edm.IEdmIncludeAnnotations"/>s indexed by the term namespace.
            If this dictionary is non-empty, then only annotations that match
            the references will be added. If it's empty, no annotations will be added. If it's null, all annotations
            will be added unconditionally.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.FilterIncludedAnnotations(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotations,System.String,System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlIncludeAnnotations}})">
            <summary>
            Filters the annotations of the specified <paramref name="csdlAnnotations"/>
            and returns a copy containing only the annotations that match the
            specified <see cref="T:Microsoft.OData.Edm.IEdmIncludeAnnotations"/>
            </summary>
            <param name="csdlAnnotations"><see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotations"/> containing the out-of-line annotations to filter</param>
            <param name="target">The target of the out-of-line annotations with the alias namespace already resolved.</param>
            <param name="includeAnnotationsIndex">Cache of the schema's out-of-line <see cref="T:Microsoft.OData.Edm.IEdmIncludeAnnotations"/>s indexed by the term namespace.
            If the dictionary is non-null, only annotations that match the references will be included.
            If it's null, all annotations will be added unconditionally.</param>
            <returns>A <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotations"/> object with the same target and qualifier as the original, but including
            only the annotations that match the references in the <paramref name="includeAnnotationsIndex"/>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel.ShouldIncludeAnnotation(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlAnnotation,System.String,System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlIncludeAnnotations}})">
            <summary>
            Checks whether the specified annoation should be included in the model based
            on whether it matches any of the provided <see cref="T:Microsoft.OData.Edm.IEdmIncludeAnnotations"/> references.
            </summary>
            <param name="annotation">The annotation to test</param>
            <param name="target">The target of the annotation, with the alias already resolved if any</param>
            <param name="includeAnnotationsIndex">Cache of the schema's out-of-line <see cref="T:Microsoft.OData.Edm.IEdmIncludeAnnotations"/>s indexed by the term namespace.
            The annotation should be included if it matches at least one of references in this cache.</param>
            <returns>Whether or not the annotation should be included in the model.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsNamedTypeReference">
            <summary>
            Provides semantics for CsdlNamedTypeReference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsNavigationProperty">
            <summary>
            Provides semantics for a CsdlNavigationProperty.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsNavigationPropertyPathExpression">
            <summary>
            Provides semantics for a Csdl Navigation Property Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsNavigationSource">
            <summary>
            Provides semantics for CsdlAbstractNavigationSource.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsNullExpression">
            <summary>
            Provides semantics for a Csdl null constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsOperation">
            <summary>
            Provides semantics for a CsdlOperation
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsOperation.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsOperationParameter">
            <summary>
            Provides semantics for a CsdlOperationParameter.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsOperationReturn">
            <summary>
            Provides semantics for a CsdlOperationReturn.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsOptionalParameter">
            <summary>
            Provides semantics for a CsdlSemanticsOptionalParameter.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsPathExpression">
            <summary>
            Provides semantics for a Csdl Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsPrimitiveTypeReference">
            <summary>
            Provides the semantics of a reference to an EDM primitive type.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsPrimitiveTypeReference.definition">
            <summary>
            This doesn't need the full caching mechanism because the computation is cheap, and the likelihood of computing a primitive type reference without needing its definition is remote.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsProperty">
            <summary>
            Provides semantics for a CsdlProperty.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsPropertyConstructor">
            <summary>
            Provides semantics for a CsdlPropertyValue used in a record expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsPropertyPathExpression">
            <summary>
            Provides semantics for a Csdl Property Path expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsRecordExpression">
            <summary>
            Provides semantics for a Csdl Record expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsReference">
            <summary>
            Provides semantics for a CsdlReference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema">
            <summary>
            Provides semantics for CsdlSchema.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema.LabeledExpressions">
            <summary>
            Gets the labeled element expressions dictionary.
            Each value in the dictionary is either a <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlLabeledExpression"/> or a list of same.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema.AttachDefaultPrimitiveValueConverter(Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlTypeDefinition,Microsoft.OData.Edm.IEdmTypeDefinition)">
            <summary>
            Attach DefaultPrimitiveValueConverter to the model if the name and the underlying type of the given type definition
            matches the default unsigned int type definitions defined in <see cref="T:Microsoft.OData.Edm.PrimitiveValueConverterConstants"/>.
            </summary>
            <param name="typeDefinition">The type definition to be added to the schema.</param>
            <param name="edmTypeDefinition">The EDM type definition to be added to the model.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSchema.ComputeLabeledExpressions">
            <summary>
            All of the labeled expressions in a schema are collected into a dictionary so that references to them can be bound.
            The elements of the dictionary are Csdl objects and not CsdlSemantics objects because the semantics objects are not created
            until and unless necessary.
            </summary>
            <returns>A dictionary containing entries for all labeled expressions in the schema.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsSingleton">
            <summary>
            Provides semantics for CsdlSingleton.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsStringConstantExpression">
            <summary>
            Provides semantics for a Csdl String constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsStringTypeReference">
            <summary>
            Provides the semantics of a reference to an EDM String type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsStructuredTypeDefinition">
            <summary>
            Provides semantics for CsdlStructuredType.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTemporalTypeReference">
            <summary>
            Provides the semantics of a reference to an EDM temporal type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTerm">
            <summary>
            Provides semantics for a CsdlTerm.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTerm.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTimeOfDayConstantExpression">
            <summary>
            Provides semantics for a Csdl TimeOfDay constant expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTypeDefinition">
            <summary>
            Common base class for the semantics of EDM types.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTypeDefinitionDefinition">
            <summary>
            Provides semantics for CsdlTypeDefinition.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTypeDefinitionDefinition.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTypeDefinitionReference">
            <summary>
            Provides the semantics of a reference to an EDM type definition.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsTypeExpression">
            <summary>
            Provides semantics for <see cref="T:Microsoft.OData.Edm.Csdl.Parsing.Ast.CsdlExpressionTypeReference"/>.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsUntypedTypeReference">
            <summary>
            Provides the semantics of a reference to an EDM untyped type.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsUntypedTypeReference.definition">
            <summary>
            The IEdmUntypedType instance from EdmCoreModel.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsVocabularyAnnotation">
            <summary>
            Provides semantics for a CsdlAnnotation.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsVocabularyAnnotation.TargetBindingContext">
            <summary>
            Gets the type to use as a binding context for expressions in the annotation. If the target of the annotation
            is an entity type, that is the binding context. If the target is an entity set or singleton, the binding context is the
            element type of the set or singleton.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsVocabularyAnnotation.UseDefault">
            <summary>
            Gets whether the annotation uses a default value
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation">
            <summary>
            Represents whether a vocabulary annotation should be serialized within the element it applies to or in a separate section of the CSDL.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation.Inline">
            <summary>
            The annotation should be serialized within the element being annotated.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation.OutOfLine">
            <summary>
            The annotation should be serialized in a separate section.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods">
            <summary>
            Contains extension methods for <see cref="T:Microsoft.OData.Edm.IEdmModel"/> interfaces that are useful to serialization.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.GetEdmxVersion(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the value for the EDMX version of the <paramref name="model"/>.
            </summary>
            <param name="model">Model the version has been set for.</param>
            <returns>The version.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.SetEdmxVersion(Microsoft.OData.Edm.IEdmModel,System.Version)">
            <summary>
            Sets a value of EDMX version attribute of the <paramref name="model"/>.
            </summary>
            <param name="model">The model the version should be set for.</param>
            <param name="version">The version.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.SetNamespacePrefixMappings(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
            <summary>
            Sets an annotation on the IEdmModel to notify the serializer of preferred prefix mappings for xml namespaces.
            </summary>
            <param name="model">Reference to the calling object.</param>
            <param name="mappings">XmlNamespaceManage containing mappings between namespace prefixes and xml namespaces.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.GetNamespacePrefixMappings(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the preferred prefix mappings for xml namespaces from an IEdmModel
            </summary>
            <param name="model">Reference to the calling object.</param>
            <returns>Namespace prefixes that exist on the model.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.SetSerializationLocation(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation,Microsoft.OData.Edm.IEdmModel,System.Nullable{Microsoft.OData.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation})">
            <summary>
            Sets the location an annotation should be serialized in.
            </summary>
            <param name="annotation">The annotation the location is being specified for.</param>
            <param name="model">Model containing the annotation.</param>
            <param name="location">The location the annotation should appear.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.GetSerializationLocation(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation,Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the location an annotation should be serialized in.
            </summary>
            <param name="annotation">Reference to the calling annotation.</param>
            <param name="model">Model containing the annotation.</param>
            <returns>The location the annotation should be serialized at.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.SetSchemaNamespace(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation,Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Sets the schema an annotation should appear in.
            </summary>
            <param name="annotation">The annotation the schema should be set for.</param>
            <param name="model">Model containing the annotation.</param>
            <param name="schemaNamespace">The schema the annotation belongs in.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.GetSchemaNamespace(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation,Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the schema an annotation should be serialized in.
            </summary>
            <param name="annotation">Reference to the calling annotation.</param>
            <param name="model">Model containing the annotation.</param>
            <returns>Name of the schema the annotation belongs to.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.SetIsValueExplicit(Microsoft.OData.Edm.IEdmEnumMember,Microsoft.OData.Edm.IEdmModel,System.Nullable{System.Boolean})">
            <summary>
            Sets an annotation indicating whether the value of an enum member should be explicitly serialized.
            </summary>
            <param name="member">Member to set the annotation on.</param>
            <param name="model">Model containing the member.</param>
            <param name="isExplicit">If the value of the enum member should be explicitly serialized</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.IsValueExplicit(Microsoft.OData.Edm.IEdmEnumMember,Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets an annotation indicating whether the value of an enum member should be explicitly serialized.
            </summary>
            <param name="member">The member the annotation is on.</param>
            <param name="model">Model containing the member.</param>
            <returns>Whether the member should have its value serialized.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.SetIsSerializedAsElement(Microsoft.OData.Edm.Vocabularies.IEdmValue,Microsoft.OData.Edm.IEdmModel,System.Boolean)">
            <summary>
            Sets an annotation indicating if the value should be serialized as an element.
            </summary>
            <param name="value">Value to set the annotation on.</param>
            <param name="model">Model containing the value.</param>
            <param name="isSerializedAsElement">Value indicating if the value should be serialized as an element.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.IsSerializedAsElement(Microsoft.OData.Edm.Vocabularies.IEdmValue,Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets an annotation indicating if the value should be serialized as an element.
            </summary>
            <param name="value">Value the annotation is on.</param>
            <param name="model">Model containing the value.</param>
            <returns>Value indicating if the string should be serialized as an element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.SetNamespaceAlias(Microsoft.OData.Edm.IEdmModel,System.String,System.String)">
            <summary>
            Sets the serialization alias for a given namespace(including current model's schemas namespace-alias, and referenced models' schemas namespace-alias)
            TODO: REF make sure no duplicated alias.
            </summary>
            <param name="model">Model that will be serialized.</param>
            <param name="namespaceName">The namespace to set the alias for.</param>
            <param name="alias">The alias for that namespace.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.GetNamespaceAlias(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Gets the serialization alias for a given namespace.
            </summary>
            <param name="model">Model that will be serialized.</param>
            <param name="namespaceName">Namespace the alias is needed for.</param>
            <returns>The alias of the given namespace, or null if one does not exist.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.SerializationExtensionMethods.GetUsedNamespacesHavingAlias(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the namespaces in all schemas having alias, excluding those without alias.
            </summary>
            <param name="model">The IEdmModel.</param>
            <returns>The namespaces in all schemas having alias.</returns>
        </member>
        <!-- Badly formed XML comment ignored for member "T:Microsoft.OData.Edm.Csdl.Serialization.EdmModelCsdlSchemaWriter" -->
        <member name="M:Microsoft.OData.Edm.Csdl.Serialization.EdmModelCsdlSchemaWriter.#ctor(Microsoft.OData.Edm.IEdmModel,System.Version)">
            <summary>
            Initializes a new instance of <see cref="T:Microsoft.OData.Edm.Csdl.Serialization.EdmModelCsdlSchemaWriter"/> class.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="edmVersion">The Edm version.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Serialization.EdmModelCsdlSchemaWriter.Model">
            <summary>
            Gets the Edm model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Serialization.EdmModelCsdlSchemaWriter.EdmVersion">
            <summary>
            Gets the Edm version.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Csdl.Serialization.EdmModelCsdlSchemaWriter.NamespaceAliasMappings">
            <summary>
            Gets the namespace alias mapping.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Serialization.EdmModelCsdlSchemaXmlWriter">
            <summary>
            OData Common Schema Definition Language (CSDL) XML writer
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Csdl.Serialization.EdmModelReferenceElementsXmlVisitor">
            <summary>
            The visitor for outputting &lt;edmx:referenced&gt; elements for referenced model.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Csdl.Serialization.EdmModelSchemaSeparationSerializationVisitor.ProcessEntityContainer(Microsoft.OData.Edm.IEdmEntityContainer)">
            <summary>
            When we see an entity container, we see if it has <see cref="F:Microsoft.OData.Edm.Csdl.CsdlConstants.SchemaNamespaceAnnotation"/>.
            If it does, then we attach it to that schema, otherwise we attached to the first existing schema.
            If there are no schemas, we create the one named "Default" and attach container to it.
            </summary>
            <param name="element">The entity container being processed.</param>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.Serialization.SerializationValidator.TypeReferenceTargetMustHaveValidName">
            <summary>
            Validates that a type reference refers to a type that can be represented in CSDL.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.Serialization.SerializationValidator.EntityReferenceTargetMustHaveValidName">
            <summary>
            Validates that a type reference refers to a type that can be represented in CSDL.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.Serialization.SerializationValidator.EntitySetTypeMustHaveValidName">
            <summary>
            Validates that an entity set refers to a type that can be represented in CSDL.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.Serialization.SerializationValidator.StructuredTypeBaseTypeMustHaveValidName">
            <summary>
            Validates that a structured type's base type can be represented in CSDL.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.Serialization.SerializationValidator.VocabularyAnnotationOutOfLineMustHaveValidTargetName">
            <summary>
            Validates that vocabulary annotations serialized out of line have a serializable target name.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Csdl.Serialization.SerializationValidator.VocabularyAnnotationMustHaveValidTermName">
            <summary>
            Validates that vocabulary annotations have a serializable term name.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmLocation">
            <summary>
            Represents the location of an Edm item.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmLocation.ToString">
            <summary>
            Gets a string representation of the location.
            </summary>
            <returns>A string representation of the location.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmUtil">
            <summary>
            Utilities for Edm.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.GetMimeType(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmProperty)">
            <summary>
            Checks whether the <paramref name="annotatableProperty"/> has a MIME type annotation.
            </summary>
            <param name="model">The <see cref="T:Microsoft.OData.Edm.IEdmModel"/> containing the annotation.</param>
            <param name="annotatableProperty">The <see cref="T:Microsoft.OData.Edm.IEdmProperty"/> to check.</param>
            <returns>The (non-null) value of the MIME type annotation of the <paramref name="annotatableProperty"/> or null if no MIME type annotation exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.SetMimeType(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmProperty,System.String)">
            <summary>
            Sets the MIME type annotation of the <paramref name="annotatableProperty"/> to <paramref name="mimeType"/>.
            </summary>
            <param name="model">The <see cref="T:Microsoft.OData.Edm.IEdmModel"/> containing the annotation.</param>
            <param name="annotatableProperty">The <see cref="T:Microsoft.OData.Edm.IEdmProperty"/> to modify.</param>
            <param name="mimeType">The MIME type value to set as annotation value; if null, an existing annotation will be removed.</param>
            <remarks>The MIME type annotation is only supported on service operations and primitive properties for serialization purposes.</remarks>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.GetMimeType(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmOperation)">
            <summary>
            Checks whether the <paramref name="annotatableOperation"/> has a MIME type annotation.
            </summary>
            <param name="model">The <see cref="T:Microsoft.OData.Edm.IEdmModel"/> containing the annotation.</param>
            <param name="annotatableOperation">The <see cref="T:Microsoft.OData.Edm.IEdmOperation"/> to check.</param>
            <returns>The (non-null) value of the MIME type annotation of the <paramref name="annotatableOperation"/> or null if no MIME type annotation exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.GetSymbolicString(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Gets the symbolic string of an annotated element.
            In the next breaking change, it's better to add a property into <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable"/>.
            </summary>
            <param name="annotatedElement">The annotatable element.</param>
            <returns>null or a symbolic string.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.SetMimeType(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmOperation,System.String)">
            <summary>
            Sets the MIME type annotation of the <paramref name="annotatableOperation"/> to <paramref name="mimeType"/>.
            </summary>
            <param name="model">The <see cref="T:Microsoft.OData.Edm.IEdmModel"/> containing the annotation.</param>
            <param name="annotatableOperation">The <see cref="T:Microsoft.OData.Edm.IEdmOperation"/> to modify.</param>
            <param name="mimeType">The MIME type value to set as annotation value; if null, an existing annotation will be removed.</param>
            <remarks>The MIME type annotation is only supported on service operations and primitive properties for serialization purposes.</remarks>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.TryParseContainerQualifiedElementName(System.String,System.String@,System.String@)">
            <summary>
            Tries the name of the parse container qualified element.
            </summary>
            <param name="containerQualifiedElementName">Name of the container qualified container element.</param>
            <param name="containerName">Name of the container that was determined.</param>
            <param name="containerElementName">The fully qualified name of the container element that was determined.</param>
            <returns>Returns true if parsing was successful and false if not.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.SetAnnotation(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement,System.String,System.String)">
            <summary>
            Sets the annotation with the OData metadata namespace and the specified <paramref name="localName" /> on the <paramref name="annotatable"/>.
            </summary>
            <param name="model">The <see cref="T:Microsoft.OData.Edm.IEdmModel"/> containing the annotations."/></param>
            <param name="annotatable">The <see cref="T:Microsoft.OData.Edm.IEdmElement"/> to set the annotation on.</param>
            <param name="localName">The local name of the annotation to set.</param>
            <param name="value">The value of the annotation to set.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.TryGetAnnotation(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement,System.String,System.String@)">
            <summary>
            Returns the annotation in the OData metadata namespace with the specified <paramref name="localName" />.
            </summary>
            <param name="model">The <see cref="T:Microsoft.OData.Edm.IEdmModel"/> containing the annotation.</param>
            <param name="annotatable">The <see cref="T:Microsoft.OData.Edm.IEdmElement"/> to get the annotation from.</param>
            <param name="localName">The local name of the annotation to find.</param>
            <param name="value">The value of the annotation in the OData metadata namespace and with the specified <paramref name="localName"/>.</param>
            <returns>true if an annotation with the specified local name was found; otherwise false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.DictionaryGetOrUpdate``2(System.Collections.Concurrent.ConcurrentDictionary{``0,``1},``0,System.Func{``0,``1})">
            <summary>
            Query dictionary for certain key, and update it if not exist
            </summary>
            <typeparam name="TKey">Key type for dictionary</typeparam>
            <typeparam name="TValue">Value type for dictionary</typeparam>
            <param name="dictionary">The dictionary to look up</param>
            <param name="key">The key property</param>
            <param name="computeValue">The function to compute value if key not exist in dictionary</param>
            <returns>The value for the key</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.DictionarySafeGet``2(System.Collections.Concurrent.ConcurrentDictionary{``0,``1},``0)">
            <summary>
            Query dictionary for certain key, return default if not present
            </summary>
            <typeparam name="TKey">Key type for dictionary</typeparam>
            <typeparam name="TValue">Value type for dictionary</typeparam>
            <param name="dictionary">The dictionary to look up</param>
            <param name="key">The key property</param>
            <returns>The value for the key, or default if the value does not exist</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.GetFullNameForSchemaElement(System.String,System.String)">
            <summary>
            Gets full name for the schema element with the provided namespace and name
            </summary>
            <param name="elementNamespace">Namespace of the element</param>
            <param name="elementName">The element name</param>
            <returns>The full name of the element</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmUtil.GetStringAnnotationValue``1(Microsoft.OData.Edm.IEdmModel,``0,System.String,System.Func{System.String})">
            <summary>
            Checks whether the <paramref name="annotatable"/> has an annotation.
            </summary>
            <param name="model">The <see cref="T:Microsoft.OData.Edm.IEdmModel"/> containing the annotation.</param>
            <param name="annotatable">The <see cref="T:Microsoft.OData.Edm.IEdmElement"/> to check.</param>
            <param name="localName">The local name of the annotation to lookup.</param>
            <param name="getFoundAnnotationValueErrorString">The error message to throw if a null value is found in an annotation.</param>
            <returns>The (non-null) value of the annotation of the <paramref name="annotatable"/> or null if no annotation exists.</returns>
            <typeparam name="TEdmElement">Any Type that derives from IEdmElement.</typeparam>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmElementComparer">
            <summary>
            Contains IsEquivalentTo() extension methods.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmElementComparer.IsEquivalentTo(Microsoft.OData.Edm.IEdmType,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if the compared type is semantically equivalent to this type.
            Schema types (<see cref="T:Microsoft.OData.Edm.IEdmSchemaType"/>) are compared by their object refs.
            </summary>
            <param name="thisType">Type being compared.</param>
            <param name="otherType">Type being compared to.</param>
            <returns>Equivalence of the two types.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmElementComparer.IsEquivalentTo(Microsoft.OData.Edm.IEdmTypeReference,Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if the compared type reference is semantically equivalent to this type reference.
            Schema types (<see cref="T:Microsoft.OData.Edm.IEdmSchemaType"/>) are compared by their object refs.
            </summary>
            <param name="thisType">Type reference being compared.</param>
            <param name="otherType">Type referenced being compared to.</param>
            <returns>Equivalence of the two type references.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmTypeSemantics">
            <summary>
            Provides semantics of the predefined EDM types.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsCollection(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a collection.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a collection.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsEntity(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an entity type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an entity type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsPath(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a path type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a path type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsEntityReference(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an entity type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an entity type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsComplex(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a complex type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a complex type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsUntyped(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a Edm.Untyped type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a Edm.Untyped type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsEnum(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an enumeration type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an enumeration type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsTypeDefinition(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a type definition.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsStructured(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a structured type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a structured type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsStructured(Microsoft.OData.Edm.EdmTypeKind)">
            <summary>
            Returns true if this type kind represents a structured type.
            </summary>
            <param name="typeKind">Reference to the calling object.</param>
            <returns>This kind refers to a structured type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsPrimitive(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a primitive type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a primitive type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsBinary(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a binary type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a binary type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsBoolean(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a boolean type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a boolean type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsTemporal(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a temporal type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a temporal type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsTemporal(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to a temporal type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a temporal type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsTemporal(Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Returns true if this type kind represents a temporal type.
            </summary>
            <param name="typeKind">Reference to the calling object.</param>
            <returns>This kind refers to a temporal type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsDuration(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a duration type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a duration type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsDate(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a Date type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a Date type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsDateTimeOffset(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a DateTimeOffset type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a DateTimeOffset type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsDecimal(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a decimal type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a decimal type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsDecimal(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to a decimal type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a decimal type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsFloating(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a floating point type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a floating point type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsSingle(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a single type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a single type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsTimeOfDay(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a TimeOfDay type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a TimeOfDay type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsDouble(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a double type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a double type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsGuid(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a GUID type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a GUID type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsSignedIntegral(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a signed integral type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a signed integral type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsSByte(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an SByte type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an SByte type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsInt16(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an Int16 type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an Int16 type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsInt32(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an Int32 type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an Int32 type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsInt64(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an Int64 type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an Int64 type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsIntegral(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to an integer type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to an integer type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsIntegral(Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Returns true if this primitive type kind represents an integer type.
            </summary>
            <param name="primitiveTypeKind">Type reference.</param>
            <returns>This kind refers to an integer type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsByte(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a byte type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a byte type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsString(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a string type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a string type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsString(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to a string type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a string type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsUntyped(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to an untyped type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a string type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsBinary(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to a binary type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a binary type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsStream(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a stream type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a stream type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsStream(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this reference refers to a stream type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a stream type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsSpatial(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a spatial type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a spatial type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsSpatial(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to a spatial type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a spatial type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsSpatial(Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Returns true if this type kind represents a spatial type.
            </summary>
            <param name="typeKind">Type reference.</param>
            <returns>This kind refers to a spatial type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsGeography(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to a geography type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a geography type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsGeography(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a geography type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a geography type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsGeography(Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Returns true if this type kind represents a geography type.
            </summary>
            <param name="typeKind">Type reference.</param>
            <returns>This kind refers to a geography type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsGeometry(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if this definition refers to a geometry type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This definition refers to a geometry type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsGeometry(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns true if this reference refers to a geometry type.
            </summary>
            <param name="type">Type reference.</param>
            <returns>This reference refers to a geometry type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsGeometry(Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Returns true if this type kind represents a geometry type.
            </summary>
            <param name="typeKind">Type reference.</param>
            <returns>This kind refers to a geometry type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsPrimitive(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a primitive type, this will return a valid primitive type reference to the type definition. Otherwise, it will return a bad primitive type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid primitive type reference if the definition of the reference is of a primitive type. Otherwise a bad primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsCollection(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a collection type, this will return a valid collection type reference to the type definition. Otherwise, it will return a bad collection type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid collection type reference if the definition of the reference is of a collection type. Otherwise a bad collection type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsStructured(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a structured type, this will return a valid structured type reference to the type definition. Otherwise, it will return a bad structured type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid structured type reference if the definition of the reference is of a structured type. Otherwise a bad structured type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsEnum(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of an enumeration type, this will return a valid enumeration type reference to the type definition. Otherwise, it will return a bad enumeration type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid enumeration type reference if the definition of the reference is of an enumeration type. Otherwise a bad enumeration type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsTypeDefinition(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a type definition, this will return a valid type definition reference to the type definition. Otherwise, it will return a bad type definition reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid type definition reference if the definition of the reference is of a type definition. Otherwise a bad type definition reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsEntity(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of an entity type, this will return a valid entity type reference to the type definition. Otherwise, it will return a bad entity type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid entity type reference if the definition of the reference is of an entity type. Otherwise a bad entity type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsEntityReference(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of an entity reference type, this will return a valid entity reference type reference to the type definition. Otherwise, it will return a bad entity reference type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid entity reference type reference if the definition of the reference is of an entity reference type. Otherwise a bad entity reference type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsComplex(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a complex type, this will return a valid complex type reference to the type definition. Otherwise, it will return a bad complex type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid complex type reference if the definition of the reference is of a complex type. Otherwise a bad complex type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsPath(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a path type, this will return a valid path type reference to the type definition.
            Otherwise, it will return a bad path type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid path type reference if the definition of the reference is of a path type.
            Otherwise a bad path type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsSpatial(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a spatial type, this will return a valid spatial type reference to the type definition. Otherwise, it will return a bad spatial type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid spatial type reference if the definition of the reference is of a spatial type. Otherwise a bad spatial type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsTemporal(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a temporal type, this will return a valid temporal type reference to the type definition. Otherwise, it will return a bad temporal type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid temporal type reference if the definition of the reference is of a temporal type. Otherwise a bad temporal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsDecimal(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a decimal type, this will return a valid decimal type reference to the type definition. Otherwise, it will return a bad decimal type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid decimal type reference if the definition of the reference is of a decimal type. Otherwise a bad decimal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsString(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a string type, this will return a valid string type reference to the type definition. Otherwise, it will return a bad string type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid string type reference if the definition of the reference is of a string type. Otherwise a bad string type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsBinary(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            If this reference is of a binary type, this will return a valid binary type reference to the type definition. Otherwise, it will return a bad binary type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>A valid binary type reference if the definition of the reference is of a binary type. Otherwise a bad binary type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.PrimitiveKind(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns the primitive kind of the definition of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The primitive kind of the definition of this reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.InheritsFrom(Microsoft.OData.Edm.IEdmStructuredType,Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Determines if the potential base type is in the inheritance hierarchy of the type being tested.
            </summary>
            <param name="type">Type to be tested for derivation from the other type.</param>
            <param name="potentialBaseType">The potential base type of the type being tested.</param>
            <returns>True if and only if the type inherits from the potential base type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsOrInheritsFrom(Microsoft.OData.Edm.IEdmType,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Determines if a type is equivalent to or derived from another type.
            </summary>
            <param name="thisType">Type to be tested for equivalence to or derivation from the other type.</param>
            <param name="otherType">Type that is the other type.</param>
            <returns>True if and only if the thisType is equivalent to or inherits from otherType.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.IsOnSameTypeHierarchyLineWith(Microsoft.OData.Edm.IEdmType,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Determines whether thisType is the same as otherType, or thisType derives from otherType, or
            otherType derives from thisType.
            </summary>
            <param name="thisType">This EDM type.</param>
            <param name="otherType">The other EDM type.</param>
            <returns>true if thisType and otherType are along the same line in the type hierarchy; false otherwise.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmTypeSemantics.AsActualType(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns the actual type of the given type.
            If the given type is type definition, the actual type is its underlying type;
            otherwise, return the given type itself.
            </summary>
            <param name="type">The given type.</param>
            <returns>The actual type of the given type.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EnumHelper">
            <summary>
            Enum helper
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EnumHelper.TryParseEnum(Microsoft.OData.Edm.IEdmEnumType,System.String,System.Boolean,System.Int64@)">
            <summary>
            Parse an enum literal value to integer. The literal value can be Enum member name (e.g. "Red"), underlying value (e.g. "2"), or combined values (e.g. "Red, Green, Blue", "1,2,4").
            </summary>
            <param name="enumType">edm enum type</param>
            <param name="value">input string value</param>
            <param name="ignoreCase">true if case insensitive, false if case sensitive</param>
            <param name="parseResult">parse result</param>
            <returns>true if parse succeeds, false if parse fails</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EnumHelper.ToStringLiteral(Microsoft.OData.Edm.IEdmEnumTypeReference,System.Int64)">
            <summary>
            Convert enum int value to string
            </summary>
            <param name="type">edm enum type reference</param>
            <param name="value">input int value</param>
            <returns>string literal of the enum value</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EnumHelper.ToStringWithFlags(Microsoft.OData.Edm.IEdmEnumType,System.Int64)">
            <summary>
            For enum with flags, use a sequential search for bit masks, and then check if any residual
            </summary>
            <param name="enumType">edm enum type</param>
            <param name="value">input integer value</param>
            <returns>string separated by comma</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EnumHelper.ToStringNoFlags(Microsoft.OData.Edm.IEdmEnumType,System.Int64)">
            <summary>
            For enum without flags, use a binary search
            </summary>
            <param name="enumType">edm enum type</param>
            <param name="value">input integer value</param>
            <returns>string</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EnumHelper.GetCachedValuesAndNames(Microsoft.OData.Edm.IEdmEnumType,System.UInt64[]@,System.String[]@,System.Boolean,System.Boolean)">
            <summary>
            Get cached values and names from hash table
            </summary>
            <param name="enumType">edm enum type</param>
            <param name="values">output values</param>
            <param name="names">output names</param>
            <param name="getValues">true if get values, false otherwise</param>
            <param name="getNames">true if get names, false otherwise</param>
        </member>
        <member name="T:Microsoft.OData.Edm.ExtensionMethods">
            <summary>
            Contains extension methods for <see cref="T:Microsoft.OData.Edm.IEdmModel"/> interfaces.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetEdmVersion(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the value for the EDM version of the <paramref name="model"/>.
            </summary>
            <param name="model">Model the version has been set for.</param>
            <returns>The version.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetEdmVersion(Microsoft.OData.Edm.IEdmModel,System.Version)">
            <summary>
            Sets a value of EDM version attribute of the <paramref name="model"/>.
            </summary>
            <param name="model">The model the version should be set for.</param>
            <param name="version">The version.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindType(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for a type with the given name in this model and all referenced models and returns null if no such type exists.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The namespace or alias qualified name of the type being found.</param>
            <returns>The requested type, or null if no such type exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindBoundOperations(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Searches for bound operations based on the binding type, returns an empty enumerable if no operation exists.
            </summary>
            <param name="model">The model to search.</param>
            <param name="bindingType">Type of the binding.</param>
            <returns>A set of operations that share the binding type or empty enumerable if no such operation exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindBoundOperations(Microsoft.OData.Edm.IEdmModel,System.String,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Searches for bound operations based on the qualified name and binding type, returns an empty enumerable if no operation exists.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The qualified name of the operation.</param>
            <param name="bindingType">Type of the binding.</param>
            <returns>A set of operations that share the qualified name and binding type or empty enumerable if no such operation exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindTerm(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for a term with the given name in this model and all referenced models and returns null if no such term exists.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The qualified name of the term being found.</param>
            <returns>The requested term, or null if no such term exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindOperations(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for operations with the given name in this model and all referenced models and returns an empty enumerable if no such operations exist.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The qualified name of the operations being found.</param>
            <returns>The requested operations.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ExistsContainer(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            If the container name in the model is the same as the input name. The input name maybe full qualified name.
            </summary>
            <param name="model">The model to search.</param>
            <param name="containerName">Input container name to be searched. The container name may be full qualified with namespace prefix.</param>
            <returns>True if the model has a container called input name, otherwise false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindEntityContainer(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for an entity container with the given name in this model and all referenced models and returns null if no such entity container exists.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The qualified name of the entity container being found.</param>
            <returns>The requested entity container, or null if no such entity container exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindVocabularyAnnotationsIncludingInheritedAnnotations(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Gets an annotatable element's vocabulary annotations defined in a specific model and models referenced by that model.
            </summary>
            <param name="model">The model to search.</param>
            <param name="element">Element to check for annotations.</param>
            <returns>Annotations attached to the element (or, if the element is a type, to its base types) by this model or by models referenced by this model.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTargetPathAnnotations(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Gets a target path's vocabulary annotations defined in a specific model and models referenced by that model.
            </summary>
            <param name="model">The model to search.</param>
            <param name="targetPath">The target path to check for annotations.</param>
            <returns>Annotations attached to the target path by this model or by models referenced by this model.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindVocabularyAnnotations``1(Microsoft.OData.Edm.IEdmModel,System.String,Microsoft.OData.Edm.Vocabularies.IEdmTerm)">
            <summary>
            Gets a target path's vocabulary annotations defined in a specific model and models referenced by that model.
            </summary>
            <typeparam name="T">Type of the annotation being returned.</typeparam>
            <param name="model">The model to search.</param>
            <param name="targetPath">The target path to check for annotations.</param>
            <param name="term">Term to search for.</param>
            <returns>Annotations attached to the target path by this model or by models referenced by this model that bind the term.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindVocabularyAnnotations(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Gets an annotatable element's vocabulary annotations defined in a specific model and models referenced by that model.
            </summary>
            <param name="model">The model to search.</param>
            <param name="element">Element to check for annotations.</param>
            <returns>Annotations attached to the element by this model or by models referenced by this model.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindVocabularyAnnotations``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,Microsoft.OData.Edm.Vocabularies.IEdmTerm)">
            <summary>
            Gets an annotatable element's vocabulary annotations that bind a particular term.
            </summary>
            <typeparam name="T">Type of the annotation being returned.</typeparam>
            <param name="model">Model to search.</param>
            <param name="element">Element to check for annotations.</param>
            <param name="term">Term to search for.</param>
            <returns>Annotations attached to the element by this model or by models referenced by this model that bind the term.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindVocabularyAnnotations``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,Microsoft.OData.Edm.Vocabularies.IEdmTerm,System.String)">
            <summary>
            Gets an annotatable element's vocabulary annotations that bind a particular term.
            </summary>
            <typeparam name="T">Type of the annotation being returned.</typeparam>
            <param name="model">Model to search.</param>
            <param name="element">Element to check for annotations.</param>
            <param name="term">Term to search for.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <returns>Annotations attached to the element by this model or by models referenced by this model that bind the term with the given qualifier.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindVocabularyAnnotations``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String)">
            <summary>
            Gets an annotatable element's vocabulary annotations that bind a particular term.
            </summary>
            <typeparam name="T">Type of the annotation being returned.</typeparam>
            <param name="model">Model to search.</param>
            <param name="element">Element to check for annotations.</param>
            <param name="termName">Name of the term to search for.</param>
            <returns>Annotations attached to the element by this model or by models referenced by this model that bind the term.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindVocabularyAnnotations``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String,System.String)">
            <summary>
            Gets an annotatable element's vocabulary annotations that bind a particular term.
            </summary>
            <typeparam name="T">Type of the annotation being returned.</typeparam>
            <param name="model">Model to search.</param>
            <param name="element">Element to check for annotations.</param>
            <param name="termName">Name of the term to search for.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <returns>Annotations attached to the element by this model or by models referenced by this model that bind the term with the given qualifier.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,System.String,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to the type of a value.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,System.String,System.String,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to the type of a value.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,Microsoft.OData.Edm.Vocabularies.IEdmTerm,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to the type of a value.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="term">Term to evaluate.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,Microsoft.OData.Edm.Vocabularies.IEdmTerm,System.String,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to the type of a value.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="term">Term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,System.String,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to the type of a value.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,System.String,System.String,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to the type of a value.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,Microsoft.OData.Edm.Vocabularies.IEdmTerm,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to the type of a value.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="term">Term to evaluate.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmStructuredValue,Microsoft.OData.Edm.Vocabularies.IEdmTerm,System.String,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to the type of a value.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="context">Value to use as context in evaluation.</param>
            <param name="term">Term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to an element.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String,System.String,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to an element.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,Microsoft.OData.Edm.Vocabularies.IEdmTerm,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to an element.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="term">Term to evaluate.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,Microsoft.OData.Edm.Vocabularies.IEdmTerm,System.String,Microsoft.OData.Edm.Vocabularies.EdmExpressionEvaluator)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmValue"/> of a vocabulary term that has been applied to an element.
            </summary>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="term">Term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="expressionEvaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to an element.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String,System.String,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to an element.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="termName">Name of the term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,Microsoft.OData.Edm.Vocabularies.IEdmTerm,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to an element.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="term">Term to evaluate.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTermValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,Microsoft.OData.Edm.Vocabularies.IEdmTerm,System.String,Microsoft.OData.Edm.Vocabularies.EdmToClrEvaluator)">
            <summary>
            Gets the CLR value of a vocabulary term that has been applied to an element.
            </summary>
            <typeparam name="T">The CLR type of the value to be returned.</typeparam>
            <param name="model">Model to search for term annotations.</param>
            <param name="element">Annotated element.</param>
            <param name="term">Term to evaluate.</param>
            <param name="qualifier">Qualifier to apply.</param>
            <param name="evaluator">Evaluator to use to perform expression evaluation.</param>
            <returns>Value of the term evaluated against the supplied value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetAnnotationValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement,System.String,System.String)">
            <summary>
            Gets an annotation value corresponding to the given namespace and name provided.
            </summary>
            <param name="model">The model containing the annotation.</param>
            <param name="element">The annotated element.</param>
            <param name="namespaceName">Namespace of the annotation.</param>
            <param name="localName">Name of the annotation inside the namespace.</param>
            <returns>The requested annotation value, if it exists. Otherwise, null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetAnnotationValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement,System.String,System.String)">
            <summary>
            Gets an annotation value corresponding to the given namespace and name provided.
            </summary>
            <typeparam name="T">Type of the annotation being returned.</typeparam>
            <param name="model">The model containing the annotation.</param>
            <param name="element">The annotated element.</param>
            <param name="namespaceName">Namespace of the annotation.</param>
            <param name="localName">Name of the annotation inside the namespace.</param>
            <returns>The requested annotation value, if it exists. Otherwise, null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetAnnotationValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement)">
            <summary>
            Gets an annotation value from an annotatable element.
            </summary>
            <typeparam name="T">Type of the annotation being returned.</typeparam>
            <param name="model">The model containing the annotation.</param>
            <param name="element">The annotated element.</param>
            <returns>The requested annotation, if it exists. Otherwise, null.</returns>
            <remarks>
            Strongly-typed wrappers for unnamed annotations keyed by CLR type.
            </remarks>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetAnnotationValue(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement,System.String,System.String,System.Object)">
            <summary>
            Sets an annotation value for an EDM element. If the value is null, no annotation is added and an existing annotation with the same name is removed.
            </summary>
            <param name="model">The model containing the annotation.</param>
            <param name="element">The annotated element.</param>
            <param name="namespaceName">Namespace that the annotation belongs to.</param>
            <param name="localName">Name of the annotation within the namespace.</param>
            <param name="value">Value of the new annotation.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetDescriptionAnnotation(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Gets description for term Org.OData.Core.V1.Description from a target annotatable
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="target">The target Annotatable to find annotation</param>
            <returns>Description for term Org.OData.Core.V1.Description</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetLongDescriptionAnnotation(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Gets description for term Org.OData.Core.V1.LongDescription from a target annotatable
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="target">The target Annotatable to find annotation</param>
            <returns>Description for term Org.OData.Core.V1.LongDescription</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetDerivedTypeConstraints(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmNavigationSource)">
            <summary>
            Gets the collection of qualified type name for term Org.OData.Validation.V1.DerivedTypeConstraint from a navigation source.
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="navigationSource">The navigation source.</param>
            <returns>Null or a collection string of qualified type name.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetDerivedTypeConstraints(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Gets the collection of qualified type name for term Org.OData.Validation.V1.DerivedTypeConstraint from a target annotatable.
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="target">The target annotatable to find annotation.</param>
            <returns>Null or a collection string of qualified type name.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SchemaElementsAcrossModels(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets all schema elements from the model, and models referenced by it.
            </summary>
            <param name="model">Model to search for elements</param>
            <returns>Schema elements from the model, and models referenced by it.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindAllDerivedTypes(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Finds a list of types that derive from the supplied type directly or indirectly, and across models.
            </summary>
            <param name="model">The model types are being found on.</param>
            <param name="baseType">The base type that derived types are being searched for.</param>
            <returns>A list of types that derive from the type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetAnnotationValue``1(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement,``0)">
            <summary>
            Sets an annotation value on an annotatable element.
            </summary>
            <typeparam name="T">Type of the annotation being set.</typeparam>
             <param name="model">The model containing the annotation.</param>
            <param name="element">The annotated element.</param>
            <param name="value">Value of the new annotation.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetAnnotationValues(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Vocabularies.IEdmDirectValueAnnotationBinding})">
            <summary>
            Retrieves a set of annotation values. For each requested value, returns null if no annotation with the given name exists for the given element.
            </summary>
            <param name="model">The model in which to find the annotations.</param>
            <param name="annotations">The set of requested annotations.</param>
            <returns>Returns values that correspond to the provided annotations. A value is null if no annotation with the given name exists for the given element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetAnnotationValues(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Vocabularies.IEdmDirectValueAnnotationBinding})">
            <summary>
            Sets a set of annotation values. If a supplied value is null, no annotation is added and an existing annotation with the same name is removed.
            </summary>
            <param name="model">The model in which to set the annotations.</param>
            <param name="annotations">The annotations to set.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.DirectValueAnnotations(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmElement)">
            <summary>
            Gets the direct annotations for an element.
            </summary>
            <param name="model">The model containing the annotations.</param>
            <param name="element">The annotated element.</param>
            <returns>The immediate annotations of the element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TryFindContainerQualifiedEntitySet(Microsoft.OData.Edm.IEdmModel,System.String,Microsoft.OData.Edm.IEdmEntitySet@)">
            <summary>
            Finds the entity set with qualified entity set name (not simple entity set name).
            </summary>
            <param name="model">The model.</param>
            <param name="containerQualifiedEntitySetName">Name of the container qualified element, can be an OperationImport or an EntitySet.</param>
            <param name="entitySet">The Entity Set that was found.</param>
            <returns>True if an entityset was found from the qualified container name, false if none were found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TryFindContainerQualifiedSingleton(Microsoft.OData.Edm.IEdmModel,System.String,Microsoft.OData.Edm.IEdmSingleton@)">
            <summary>
            Finds the singleton.
            </summary>
            <param name="model">The model.</param>
            <param name="containerQualifiedSingletonName">Name of the container qualified singleton element.</param>
            <param name="singleton">The singleton that was found.</param>
            <returns>True if an singleton was found from the qualified container name, false if none were found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TryFindContainerQualifiedOperationImports(Microsoft.OData.Edm.IEdmModel,System.String,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmOperationImport}@)">
            <summary>
            Tries the find container qualified operation imports.
            </summary>
            <param name="model">The model.</param>
            <param name="containerQualifiedOperationImportName">Name of the container qualified operation import.</param>
            <param name="operationImports">The operation imports.</param>
            <returns>True if OperationImports are found, false if none were found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindDeclaredEntitySet(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for entity set by the given name that may be container qualified in default container and .Extends containers.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The name which might be container qualified. If no container name is provided, then default container will be searched.</param>
            <returns>The entity set found or empty if none found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindDeclaredSingleton(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for singleton by the given name that may be container qualified in default container and .Extends containers. If no container name is provided, then default container will be searched.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The name which might be container qualified. If no container name is provided, then default container will be searched.</param>
            <returns>The singleton found or empty if none found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindDeclaredNavigationSource(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for entity set or singleton by the given name that may be container qualified in default container and .Extends containers. If no container name is provided, then default container will be searched.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The name which might be container qualified. If no container name is provided, then default container will be searched.</param>
            <returns>The entity set or singleton found or empty if none found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindDeclaredOperationImports(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Searches for the operation imports by the specified name in default container and .Extends containers, returns an empty enumerable if no operation import exists.
            </summary>
            <param name="model">The model to search.</param>
            <param name="qualifiedName">The qualified name of the operation import which may or may not include the container name.</param>
            <returns>All operation imports that can be found by the specified name, returns an empty enumerable if no operation import exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetPrimitiveValueConverter(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Get the primitive value converter for the given type definition in the model.
            </summary>
            <param name="model">The model involved.</param>
            <param name="type">The reference to a type definition.</param>
            <returns>The primitive value converter for the type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetPrimitiveValueConverter(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmTypeDefinitionReference,Microsoft.OData.Edm.IPrimitiveValueConverter)">
            <summary>
            Set the primitive value converter for the given type definition in the model.
            </summary>
            <param name="model">The model involved.</param>
            <param name="typeDefinition">The reference to a type definition.</param>
            <param name="converter">The primitive value converter for the type definition.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.MarkAsImmutable(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Marks the model as immutable. This may enable optimizations
            that assume the model does not get modified. It is the responsibility
            of the caller to ensure that the underlying EDM model is not modified after calling
            this method.
            </summary>
            <param name="model">The model involved</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsImmutable(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Checks whether or not the model has been marked as immutable,
            signifying that it does not change. The model is marked as
            immutable by calling <see cref="M:Microsoft.OData.Edm.ExtensionMethods.MarkAsImmutable(Microsoft.OData.Edm.IEdmModel)"/>
            </summary>
            <param name="model">The model involved</param>
            <returns>Whether or not the model has been marked as immutable</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetVocabularyAnnotationCache(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the cache used to store and retrieve vocabulary annotations
            of elements in this model.
            </summary>
            <param name="model">The model for which to retrieve the cache</param>
            <returns>The vocabulary annotations cache for the model</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddComplexType(Microsoft.OData.Edm.EdmModel,System.String,System.String)">
            <summary>
            Creates and adds a complex type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
            <returns>The complex type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddComplexType(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmComplexType)">
            <summary>
            Creates and adds a complex type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
            <param name="baseType">The base type of this complex type.</param>
            <returns>The complex type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddComplexType(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmComplexType,System.Boolean)">
            <summary>
            Creates and adds a complex type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
            <param name="baseType">The base type of this complex type.</param>
            <param name="isAbstract">Denotes whether this complex type is abstract.</param>
            <returns>The complex type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddComplexType(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmComplexType,System.Boolean,System.Boolean)">
            <summary>
            Creates and adds a complex type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
            <param name="baseType">The base type of this complex type.</param>
            <param name="isAbstract">Denotes whether this complex type is abstract.</param>
            <param name="isOpen">Denotes if the type is open.</param>
            <returns>The complex type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddEntityType(Microsoft.OData.Edm.EdmModel,System.String,System.String)">
            <summary>
            Creates and adds an entity type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <returns>The entity type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddEntityType(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Creates and adds an entity type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
            <returns>The entity type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddEntityType(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmEntityType,System.Boolean,System.Boolean)">
            <summary>
            Creates and adds an entity type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
            <param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
            <param name="isOpen">Denotes if the type is open.</param>
            <returns>The entity type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddEntityType(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmEntityType,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Creates and adds an entity type to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
            <param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
            <param name="isOpen">Denotes if the type is open.</param>
            <param name="hasStream">Denotes if the type is a media type.</param>
            <returns>The entity type created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddEntityContainer(Microsoft.OData.Edm.EdmModel,System.String,System.String)">
            <summary>
            Creates and adds an entity container to the model.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">Namespace of the entity container.</param>
            <param name="name">Name of the entity container.</param>
            <returns>The entity container created.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddTerm(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Creates and adds a new instance of the <see cref="T:Microsoft.OData.Edm.Vocabularies.EdmTerm"/> class from a primitive type kind.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">The Namespace of the term.</param>
            <param name="name">The name of the newly created term</param>
            <param name="kind">The primitive type kind of the term.</param>
            <returns>The created term.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddTerm(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Creates and adds a new instance of the <see cref="T:Microsoft.OData.Edm.Vocabularies.EdmTerm"/> class from a type reference.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">The Namespace of the term.</param>
            <param name="name">The name of the newly created term</param>
            <param name="type">The type of the term.</param>
            <returns>The created term.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddTerm(Microsoft.OData.Edm.EdmModel,System.String,System.String,Microsoft.OData.Edm.IEdmTypeReference,System.String,System.String)">
            <summary>
            Creates and adds a new instance of the <see cref="T:Microsoft.OData.Edm.Vocabularies.EdmTerm"/> class from a type reference.
            </summary>
            <param name="model">The EdmModel.</param>
            <param name="namespaceName">The Namespace of the term.</param>
            <param name="name">The name of the newly created term</param>
            <param name="type">The type of the term.</param>
            <param name="appliesTo">The AppliesTo of the term.</param>
            <param name="defaultValue">The DefaultValue of the term.</param>
            <returns>The created term.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetOptimisticConcurrencyAnnotation(Microsoft.OData.Edm.EdmModel,Microsoft.OData.Edm.IEdmEntitySet,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmStructuralProperty})">
            <summary>
            Set annotation Org.OData.Core.V1.OptimisticConcurrency to EntitySet
            </summary>
            <param name="model">The model to add annotation</param>
            <param name="target">The target entitySet to set the inline annotation</param>
            <param name="properties">The PropertyPath for annotation</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetDescriptionAnnotation(Microsoft.OData.Edm.EdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String)">
            <summary>
            Set Org.OData.Core.V1.Description to target.
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="target">The target Annotatable to add annotation.</param>
            <param name="description">Description to be added.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetLongDescriptionAnnotation(Microsoft.OData.Edm.EdmModel,Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,System.String)">
            <summary>
            Set Org.OData.Core.V1.LongDescription to target.
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="target">The target Annotatable to add annotation.</param>
            <param name="description">Description to be added.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetChangeTrackingAnnotation(Microsoft.OData.Edm.EdmModel,Microsoft.OData.Edm.IEdmEntityContainer,System.Boolean)">
            <summary>
            Set Org.OData.Capabilities.V1.ChangeTracking to target.
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="target">The target entity container to set the inline annotation.</param>
            <param name="isSupported">This entity set supports the odata.track-changes preference.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetChangeTrackingAnnotation(Microsoft.OData.Edm.EdmModel,Microsoft.OData.Edm.IEdmEntitySet,System.Boolean,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmStructuralProperty},System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmNavigationProperty})">
            <summary>
            Set Org.OData.Capabilities.V1.ChangeTracking to target.
            </summary>
            <param name="model">The model referenced to.</param>
            <param name="target">The target entity set to set the inline annotation.</param>
            <param name="isSupported">This entity set supports the odata.track-changes preference.</param>
            <param name="filterableProperties">Change tracking supports filters on these properties.</param>
            <param name="expandableProperties">Change tracking supports these properties expanded.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetUInt16(Microsoft.OData.Edm.EdmModel,System.String,System.Boolean)">
            <summary>
            Get type reference to the default UInt16 type definition.
            The default underlying type is <see cref="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.DefaultUInt16UnderlyingType"/>.
            If the user has already defined his own UInt16, this method will not define anything and simply returns the type reference.
            </summary>
            <param name="model">The model involved</param>
            <param name="namespaceName">The name of the namespace where the type definition resides.</param>
            <param name="isNullable">Indicate if the type definition reference is nullable.</param>
            <returns>The nullable type reference to UInt16 type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetUInt32(Microsoft.OData.Edm.EdmModel,System.String,System.Boolean)">
            <summary>
            Get type reference to the default UInt32 type definition.
            The default underlying type is <see cref="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.DefaultUInt32UnderlyingType"/>.
            If the user has already defined his own UInt32, this method will not define anything and simply returns the type reference.
            </summary>
            <param name="model">The model involved</param>
            <param name="namespaceName">The name of the namespace where the type definition resides.</param>
            <param name="isNullable">Indicate if the type definition reference is nullable.</param>
            <returns>The nullable type reference to UInt32 type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetUInt64(Microsoft.OData.Edm.EdmModel,System.String,System.Boolean)">
            <summary>
            Get type reference to the default UInt64 type definition.
            The default underlying type is <see cref="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.DefaultUInt64UnderlyingType"/>.
            If the user has already defined his own UInt64, this method will not define anything and simply returns the type reference.
            </summary>
            <param name="model">The model involved</param>
            <param name="namespaceName">The name of the namespace where the type definition resides.</param>
            <param name="isNullable">Indicate if the type definition reference is nullable.</param>
            <returns>The nullable type reference to UInt64 type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetTargetPath(Microsoft.OData.Edm.IEdmModel,System.String,System.Boolean)">
            <summary>
            Returns an <see cref="T:Microsoft.OData.Edm.IEdmTargetPath"/> given a target path string.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="targetPath">The target path string comprising of segments separated by '/', e.g., "A.B/C/D.E/Func1(NS.T,NS.T2)/P1".</param>
            <param name="ignoreCase">Property name case-insensitive or not.</param>
            <returns>The created <see cref="T:Microsoft.OData.Edm.IEdmTargetPath"/>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.Location(Microsoft.OData.Edm.IEdmElement)">
            <summary>
            Gets the location of this element.
            </summary>
            <param name="item">Reference to the calling object.</param>
            <returns>The location of the element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.VocabularyAnnotations(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable,Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets an annotatable element's vocabulary annotations as seen from a particular model.
            </summary>
            <param name="element">Reference to the calling object.</param>
            <param name="model">Model to check for annotations.</param>
            <returns>Annotations attached to the element by the model or by models referenced by the model.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FullName(Microsoft.OData.Edm.IEdmSchemaElement)">
            <summary>
            Gets the full name of the element.
            </summary>
            <param name="element">Reference to the calling object.</param>
            <returns>The full name of the element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ShortQualifiedName(Microsoft.OData.Edm.IEdmSchemaElement)">
            <summary>
            Gets the Short Qualified name of the element.
            </summary>
            <param name="element">Reference to the calling object.</param>
            <returns>The short qualified name of the element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.EntitySets(Microsoft.OData.Edm.IEdmEntityContainer)">
            <summary>
            Returns entity sets belonging to an IEdmEntityContainer.
            </summary>
            <param name="container">Reference to the calling object.</param>
            <returns>Entity sets belonging to an IEdmEntityContainer.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.Singletons(Microsoft.OData.Edm.IEdmEntityContainer)">
            <summary>
            Returns singletons belonging to an IEdmEntityContainer.
            </summary>
            <param name="container">Reference to the calling object.</param>
            <returns>Singletons belonging to an IEdmEntityContainer.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.OperationImports(Microsoft.OData.Edm.IEdmEntityContainer)">
            <summary>
            Returns operation imports belonging to an IEdmEntityContainer.
            </summary>
            <param name="container">Reference to the calling object.</param>
            <returns>Operation imports belonging to an IEdmEntityContainer.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetNavigationPropertyBindings(Microsoft.OData.Edm.IEdmEntityContainer)">
            <summary>
            Returns navigation property bindings with their corresponding container elements (entity set or singleton)
            </summary>
            <param name="container">Reference to the calling object.</param>
            <returns>Collection of pairs of container element and navigation property bindings.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TypeKind(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Gets the type kind of the type references definition.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The type kind of the reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FullName(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Gets the full name of the definition referred to by the type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The full name of this references definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ShortQualifiedName(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Gets the short qualified name of the definition referred to by the type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The short qualified name of this references definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FullTypeName(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Gets the full name of the definition referred to by the type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The full name of this references definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AsElementType(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Gets the element type of a collection definition or itself of a non-collection definition referred to by the type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The element type of this references definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.PrimitiveDefinition(Microsoft.OData.Edm.IEdmPrimitiveTypeReference)">
            <summary>
            Gets the definition of this primitive type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>Definition of this primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.PrimitiveKind(Microsoft.OData.Edm.IEdmPrimitiveTypeReference)">
            <summary>
            Gets the primitive kind of the definition referred to by this type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>Primitive kind of the definition of this reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.Properties(Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Gets all properties of the structured type definition and its base types.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>Properties of this type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.DeclaredStructuralProperties(Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Gets all structural properties declared in the IEdmStructuredTypeDefinition.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>All structural properties declared in the IEdmStructuredTypeDefinition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.StructuralProperties(Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Gets the structural properties declared in this type definition and all base types.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The structural properties declared in this type definition and all base types.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.StructuredDefinition(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Gets the definition of this structured type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The definition of this structured type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsAbstract(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Returns true if the definition of this reference is abstract.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>If the definition of this reference is abstract.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsOpen(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Returns true if the definition of this reference is open.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>If the definition of this reference is open.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsOpen(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns true if the definition of this reference is open.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>If the definition of this reference is open.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.BaseType(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Returns the base type of the definition of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The base type of the definition of this reference. </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.DeclaredStructuralProperties(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Gets all structural properties declared in the definition of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>All structural properties declared in the definition of this reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.StructuralProperties(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Gets all structural properties declared in the definition of this reference and all its base types.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>All structural properties declared in the definition of this reference and all its base types.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindProperty(Microsoft.OData.Edm.IEdmStructuredTypeReference,System.String,System.Boolean)">
            <summary>
            Finds a property from the definition of this reference.
            </summary>
            <param name="structuredType">Reference to the calling object.</param>
            <param name="propertyName">Name of the property to find.</param>
            <param name="caseInsensitive">Property name case-sensitive or not.</param>
            <returns>The requested property if it exists. Otherwise, null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindProperty(Microsoft.OData.Edm.IEdmStructuredType,System.String,System.Boolean)">
            <summary>
            Finds a property from the definition of this reference.
            </summary>
            <param name="structuredType">Reference to the calling object.</param>
            <param name="propertyName">Name of the property to find.</param>
            <param name="caseInsensitive">Property name case-sensitive or not.</param>
            <returns>The requested property if it exists. Otherwise, null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindProperty(Microsoft.OData.Edm.IEdmStructuredTypeReference,System.String)">
            <summary>
            Finds a property from the definition of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <param name="name">Name of the property to find.</param>
            <returns>The requested property if it exists. Otherwise, null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.NavigationProperties(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Gets the navigation properties declared in the definition of this reference and its base types.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The navigation properties declared in the definition of this reference and its base types.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.DeclaredNavigationProperties(Microsoft.OData.Edm.IEdmStructuredTypeReference)">
            <summary>
            Gets the navigation properties declared in the definition of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The navigation properties declared in the definition of this reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindNavigationProperty(Microsoft.OData.Edm.IEdmStructuredTypeReference,System.String)">
            <summary>
            Finds a navigation property declared in the definition of this reference by name.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <param name="name">Name of the navigation property to find.</param>
            <returns>The requested navigation property if it exists. Otherwise, null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.BaseEntityType(Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Gets the base type of this entity type definition.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The base type of this entity type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.BaseType(Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Gets the base type of this structured type definition.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The base type of this structured type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.DeclaredNavigationProperties(Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Gets the navigation properties declared in this structured type definition.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The navigation properties declared in this structured type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.NavigationProperties(Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Get the navigation properties declared in this structured type and all base types.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The navigation properties declared in this structured type and all base types.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.Key(Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Gets the declared key of the most defined entity with a declared key present.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>Key of this type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsKey(Microsoft.OData.Edm.IEdmProperty)">
            <summary>
            Determines whether the specified property is a key for its contained type.
            </summary>
            <param name="property">The property that may be a key.</param>
            <returns>True, if the property is a key, False if the property is not a key.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetAlternateKeysAnnotation(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Gets the declared alternate keys of the most defined entity with a declared key present.
            </summary>
            <param name="model">The model to be used.</param>
            <param name="type">Reference to the calling object.</param>
            <returns>Alternate Keys of this type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.AddAlternateKeyAnnotation(Microsoft.OData.Edm.EdmModel,Microsoft.OData.Edm.IEdmEntityType,System.Collections.Generic.IDictionary{System.String,Microsoft.OData.Edm.IEdmProperty},System.Boolean)">
            <summary>
            Adds the alternate keys to this entity type.
            </summary>
            <param name="model">The model to be used.</param>
            <param name="type">Reference to the calling object.</param>
            <param name="alternateKey">Dictionary of alias and structural properties for the alternate key.</param>
            <param name="useCore">A flag to indicate which alternate term to use.
            If ture, 'Org.OData.Core.V1.AlternateKeys' is used, otherwise, 'OData.Community.Keys.V1.AlternateKeys' is used.
            </param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.HasDeclaredKeyProperty(Microsoft.OData.Edm.IEdmEntityType,Microsoft.OData.Edm.IEdmProperty)">
            <summary>
            Checks whether the given entity type has the <paramref name="property"/> as one of the key properties.
            </summary>
            <param name="entityType">Given entity type.</param>
            <param name="property">Property to be searched for.</param>
            <returns><c>true</c> if the type or base types has given property declared as key. <c>false</c> otherwise.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.EntityDefinition(Microsoft.OData.Edm.IEdmEntityTypeReference)">
            <summary>
            Gets the definition of this entity reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The definition of this entity reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.BaseEntityType(Microsoft.OData.Edm.IEdmEntityTypeReference)">
            <summary>
            Gets the base type of the definition of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The base type of the definition of this reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.Key(Microsoft.OData.Edm.IEdmEntityTypeReference)">
            <summary>
            Gets the entity key of the definition of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The entity key of the definition of this reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.BaseComplexType(Microsoft.OData.Edm.IEdmComplexType)">
            <summary>
            Gets the base type of this references definition.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The base type of this references definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ComplexDefinition(Microsoft.OData.Edm.IEdmComplexTypeReference)">
            <summary>
            Gets the definition of this reference typed as an IEdmComplexTypeDefinition.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The definition of this reference typed as an IEdmComplexTypeDefinition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.BaseComplexType(Microsoft.OData.Edm.IEdmComplexTypeReference)">
            <summary>
            Gets the base type of this reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The base type of this reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.EntityReferenceDefinition(Microsoft.OData.Edm.IEdmEntityReferenceTypeReference)">
            <summary>
            Gets the definition of this entity reference type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The definition of this entity reference type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.EntityType(Microsoft.OData.Edm.IEdmEntityReferenceTypeReference)">
            <summary>
            Gets the entity type referred to by the definition of this entity reference type reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The entity type referred to by the definition of this entity reference type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.CollectionDefinition(Microsoft.OData.Edm.IEdmCollectionTypeReference)">
            <summary>
            Gets the definition of this collection reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The definition of this collection reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ElementType(Microsoft.OData.Edm.IEdmCollectionTypeReference)">
            <summary>
            Gets the element type of the definition of this collection reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The element type of the definition of this collection reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.EnumDefinition(Microsoft.OData.Edm.IEdmEnumTypeReference)">
            <summary>
            Gets the definition of this enumeration reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The definition of this enumeration reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TypeDefinition(Microsoft.OData.Edm.IEdmTypeDefinitionReference)">
            <summary>
            Gets the definition of this type definition reference.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The definition of this type definition reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TargetMultiplicity(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Gets the multiplicity of the target of this navigation.
            </summary>
            <param name="property">Reference to the calling object.</param>
            <returns>The multiplicity of the target end of the relationship.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ToEntityType(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Gets the entity type targeted by this navigation property.
            </summary>
            <param name="property">Reference to the calling object.</param>
            <returns>The entity type targeted by this navigation property.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ToStructuredType(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Gets the structured type targeted by this structural property type reference.
            </summary>
            <param name="propertyTypeReference">Reference to the calling object.</param>
            <returns>The structured type targeted by this structural property.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.DeclaringEntityType(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Gets the entity type declaring this navigation property.
            </summary>
            <param name="property">Reference to the calling object.</param>
            <returns>The entity type that declares this navigation property.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsPrincipal(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Gets whether this navigation property originates at the principal end of an association.
            </summary>
            <param name="navigationProperty">The navigation property.</param>
            <returns>Whether this navigation property originates at the principal end of an association.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.DependentProperties(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Gets the dependent properties of this navigation property, returning null if this is the principal entity or if there is no referential constraint.
            </summary>
            <param name="navigationProperty">The navigation property.</param>
            <returns>The dependent properties of this navigation property, returning null if this is the principal entity or if there is no referential constraint.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.PrincipalProperties(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Gets the principal properties of this navigation property, returning null if this is the principal entity or if there is no referential constraint.
            </summary>
            <param name="navigationProperty">The navigation property.</param>
            <returns>The principal properties of this navigation property, returning null if this is the principal entity or if there is no referential constraint.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.Term(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)">
            <summary>
            Gets the term of this annotation.
            </summary>
            <param name="annotation">Reference to the calling object.</param>
            <returns>The term of this annotation.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TryGetRelativeEntitySetPath(Microsoft.OData.Edm.IEdmOperation,Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmOperationParameter@,System.Collections.Generic.Dictionary{Microsoft.OData.Edm.IEdmNavigationProperty,Microsoft.OData.Edm.IEdmPathExpression}@,Microsoft.OData.Edm.IEdmEntityType@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Tries to get the relative entity set path.
            </summary>
            <param name="operation">The operation to resolve the entitySet path.</param>
            <param name="model">The model.</param>
            <param name="parameter">The parameter.</param>
            <param name="relativeNavigations">The relative navigations and its path.</param>
            <param name="lastEntityType">Last type of the entity.</param>
            <param name="errors">The errors.</param>
            <returns>True if a Entity set path is found, false otherwise.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsActionImport(Microsoft.OData.Edm.IEdmOperationImport)">
            <summary>
            Determines whether [is action import] [the specified operation import].
            </summary>
            <param name="operationImport">The operation import.</param>
            <returns>
              <c>true</c> if [is action import] [the specified operation import]; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsFunctionImport(Microsoft.OData.Edm.IEdmOperationImport)">
            <summary>
            Determines whether [is function import] [the specified operation import].
            </summary>
            <param name="operationImport">The operation import.</param>
            <returns>
              <c>true</c> if [is function import] [the specified operation import]; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TryGetStaticEntitySet(Microsoft.OData.Edm.IEdmOperationImport,Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmEntitySetBase@)">
            <summary>
            Analyzes <see cref="T:Microsoft.OData.Edm.IEdmOperationImport"/>.EntitySet expression and returns a static <see cref="T:Microsoft.OData.Edm.IEdmEntitySet"/> reference if available.
            </summary>
            <param name="operationImport">The operation import containing the entity set expression.</param>
            <param name="model">The model containing the operation import.</param>
            <param name="entitySet">The static entity set of the operation import.</param>
            <returns>True if the entity set expression of the <paramref name="operationImport"/> contains a static reference to an <see cref="T:Microsoft.OData.Edm.IEdmEntitySet"/>, otherwise false.</returns>
            <remarks>TODO: Support resolving target path to a contained entity set.</remarks>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.TryGetRelativeEntitySetPath(Microsoft.OData.Edm.IEdmOperationImport,Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmOperationParameter@,System.Collections.Generic.Dictionary{Microsoft.OData.Edm.IEdmNavigationProperty,Microsoft.OData.Edm.IEdmPathExpression}@,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.Validation.EdmError}@)">
            <summary>
            Analyzes <see cref="T:Microsoft.OData.Edm.IEdmOperationImport"/>.EntitySet expression and returns a relative path to an <see cref="T:Microsoft.OData.Edm.IEdmEntitySet"/> if available.
            The path starts with the <paramref name="parameter"/> and may have optional sequence of <see cref="T:Microsoft.OData.Edm.IEdmNavigationProperty"/> and type casts segments.
            </summary>
            <param name="operationImport">The operation import containing the entity set expression.</param>
            <param name="model">The model containing the operation import.</param>
            <param name="parameter">The operation import parameter from which the relative entity set path starts.</param>
            <param name="relativeNavigations">The optional sequence of navigation properties and their path</param>
            <param name="edmErrors">The errors that were found when attempting to get the relative path.</param>
            <returns>True if the entity set expression of the <paramref name="operationImport"/> contains a relative path an <see cref="T:Microsoft.OData.Edm.IEdmEntitySet"/>, otherwise false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsAction(Microsoft.OData.Edm.IEdmOperation)">
            <summary>
            Determines whether the specified operation is action.
            </summary>
            <param name="operation">The operation.</param>
            <returns>
              <c>true</c> if the specified operation is action; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsFunction(Microsoft.OData.Edm.IEdmOperation)">
            <summary>
            Determines whether the specified operation is function.
            </summary>
            <param name="operation">The operation.</param>
            <returns>
              <c>true</c> if the specified operation is function; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetReturn(Microsoft.OData.Edm.IEdmOperation)">
            <summary>
            Gets the <see cref="T:Microsoft.OData.Edm.IEdmOperationReturn"/> from the specified operation.
            </summary>
            <param name="operation">The operation.</param>
            <returns>The instance of <see cref="T:Microsoft.OData.Edm.IEdmOperationReturn"/> or null if the operation has no return type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FilterByName(System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmOperation},System.Boolean,System.String)">
            <summary>
            Checks whether all operations have the same return type
            </summary>
            <param name="operations">the list to check</param>
            <param name="forceFullyQualifiedNameFilter">Ensures that the Where filter clause applies the Full name,</param>
            <param name="operationName">The operation name to filter by.</param>
            <returns>true if the list of operation imports all have the same return type</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.HasEquivalentBindingType(Microsoft.OData.Edm.IEdmOperation,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Determines whether the bound operation's binding type is equivalent to the specified binding type.
            </summary>
            <param name="operation">The operation.</param>
            <param name="bindingType">Type of the binding.</param>
            <returns>
              <c>true</c> if [is operation binding type equivalent to] [the specified operation]; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindProperty(Microsoft.OData.Edm.Vocabularies.IEdmRecordExpression,System.String)">
            <summary>
            Finds a property of a record expression.
            </summary>
            <param name="expression">The record expression.</param>
            <param name="name">Name of the property to find.</param>
            <returns>The property, if found, otherwise null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.NavigationSourceKind(Microsoft.OData.Edm.IEdmNavigationSource)">
            <summary>
            Return the navigation kind of the navigation source.
            </summary>
            <param name="navigationSource">The navigation source.</param>
            <returns>The kind of the navigation source.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FullNavigationSourceName(Microsoft.OData.Edm.IEdmNavigationSource)">
            <summary>
            Returns the fully qualified name of a navigation source.
            </summary>
            <param name="navigationSource">The navigation source to get the full name for.</param>
            <returns>The full qualified name of the navigation source.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.EntityType(Microsoft.OData.Edm.IEdmNavigationSource)">
            <summary>
            Return the entity type of the navigation source.
            </summary>
            <param name="navigationSource">The navigation source.</param>
            <returns>The entity type of the navigation source.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetEdmReferences(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmReference})">
            <summary>
            Sets edmx:Reference information (IEdmReference) to the model.
            </summary>
            <param name="model">The IEdmModel to set edmx:Reference information.</param>
            <param name="edmReferences">The edmx:Reference information to be set.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetEdmReferences(Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets edmx:Reference information (IEdmReference) from the model.
            </summary>
            <param name="model">The IEdmModel to get edmx:Reference information.</param>
            <returns>The edmx:Reference information.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetPartnerPath(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Gets the partner path of a navigation property.
            </summary>
            <param name="navigationProperty">The navigation property.</param>
            <returns>Path to the partner navigation property from the related entity type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.ReplaceAlias(Microsoft.OData.Edm.IEdmModel,System.String)">
            <summary>
            Replace a possibly alias-qualified name with the full namespace qualified name.
            </summary>
            <param name="model">The model containing the element.</param>
            <param name="name">The alias- or namespace- qualified name of the element.</param>
            <returns>The namespace qualified name of the element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetPathString(Microsoft.OData.Edm.IEdmTargetPath)">
            <summary>
            Returns the target path string given an <see cref="T:Microsoft.OData.Edm.IEdmTargetPath"/>.
            </summary>
            <param name="targetPath">The <see cref="T:Microsoft.OData.Edm.IEdmTargetPath"/>.</param>
            <returns>The target path string.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindTypeInModelTree(Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel,System.String)">
            <summary>
            Find types in CsdlSemanticsModel tree.
            </summary>
            <param name="model">The CsdlSemanticsModel.</param>
            <param name="name">The name by which to search.</param>
            <returns>The found emd type or null.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindInModelTree``1(Microsoft.OData.Edm.Csdl.CsdlSemantics.CsdlSemanticsModel,System.Func{Microsoft.OData.Edm.IEdmModel,System.String,``0},System.String,System.Func{``0,``0,``0})">
            <summary>
            Searches for a type with the given name in the model and its main/sibling/referenced models, returns null if no such type exists.
            </summary>
            <typeparam name="T">the type of value to find.</typeparam>
            <param name="model">The model to search for type.</param>
            <param name="finderFunc">The func for each IEdmModel node to find element by name.</param>
            <param name="qualifiedName">The qualified name of the type being found.</param>
            <param name="ambiguousCreator">The func to combine results when more than one is found.</param>
            <remarks>when searching, will ignore built-in types in EdmCoreModel and CoreVocabularyModel.</remarks>
            <returns>The requested type, or null if no such type exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.IsUrlEscapeFunction(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmFunction)">
            <summary>
            Determines whether the specified function is UrlEscape function or not.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="function">The specified function</param>
            <returns><c>true</c> if the specified operation is UrlEscape function; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetUrlEscapeFunction(Microsoft.OData.Edm.EdmModel,Microsoft.OData.Edm.IEdmFunction)">
            <summary>
            Set annotation Org.OData.Community.V1.UrlEscapeFunction to <see cref="T:Microsoft.OData.Edm.IEdmFunction"/>.
            </summary>
            <param name="model">The model to add annotation</param>
            <param name="function">The target function to set the inline annotation</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetPathSegmentEntityType(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            This method is only used for the operation import entity set path parsing.
            </summary>
            <param name="segmentType">The type of the segment.</param>
            <returns>Non-null entity type that may be bad.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindEntitySetExtended(Microsoft.OData.Edm.IEdmEntityContainer,System.String)">
            <summary>
            Searches for entity set by the given name that may be container qualified in default container and .Extends containers.
            </summary>
            <param name="container">The container to search.</param>
            <param name="qualifiedName">The name which might be container qualified. If no container name is provided, then default container will be searched.</param>
            <returns>The entity set found or empty if none found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindNavigationSourceExtended(Microsoft.OData.Edm.IEdmEntityContainer,System.String)">
            <summary>
            Searches for an entity set or contained navigation property according to the specified path that may be container qualified in default container and .Extends containers.
            </summary>
            <param name="container">The container to search.</param>
            <param name="path">The name which might be container qualified. If no container name is provided, then default container will be searched.</param>
            <returns>The entity set found or empty if none found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindNavigationSource(Microsoft.OData.Edm.IEdmEntityContainer,System.String)">
            <summary>
            Searches for an entity set or contained navigation property according to the specified path that may be container qualified in default container and .Extends containers.
            </summary>
            <param name="container">The container to search.</param>
            <param name="path">The path which might be container qualified. If no container name is provided, then default container will be searched.</param>
            <returns>The navigation source found or empty if none found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindSingletonExtended(Microsoft.OData.Edm.IEdmEntityContainer,System.String)">
            <summary>
            Searches for singleton by the given name that may be container qualified in default container and .Extends containers. If no container name is provided, then default container will be searched.
            </summary>
            <param name="container">The container to search.</param>
            <param name="qualifiedName">The name which might be container qualified. If no container name is provided, then default container will be searched.</param>
            <returns>The singleton found or empty if none found.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindOperationImportsExtended(Microsoft.OData.Edm.IEdmEntityContainer,System.String)">
            <summary>
            Searches for the operation imports by the specified name in default container and .Extends containers, returns an empty enumerable if no operation import exists.
            </summary>
            <param name="container">The container to search.</param>
            <param name="qualifiedName">The qualified name of the operation import which may or may not include the container name.</param>
            <returns>All operation imports that can be found by the specified name, returns an empty enumerable if no operation import exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetPrimitiveValueConverter(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Get the primitive value converter for the given type definition in the model.
            </summary>
            <param name="model">The model involved.</param>
            <param name="typeDefinition">The type definition.</param>
            <returns>The primitive value converter for the type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.SetPrimitiveValueConverter(Microsoft.OData.Edm.IEdmModel,Microsoft.OData.Edm.IEdmType,Microsoft.OData.Edm.IPrimitiveValueConverter)">
            <summary>
            Set the primitive value converter for the given type definition in the model.
            </summary>
            <param name="model">The model involved.</param>
            <param name="typeDefinition">The type definition.</param>
            <param name="converter">The primitive value converter for the type definition.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.HasAny``1(System.Collections.Generic.IEnumerable{``0})">
            <summary>
            Returns true if there is any element in the list or collections.
            It tries to cast to list first and then an array, this method will be performant if the callers of this extension method implement IEnumerable through lists.
            </summary>
            <typeparam name="T">The testing value type.</typeparam>
            <param name="enumerable">the testing enumerable.</param>
            <returns>ture/false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.GetDeclaredAlternateKeysForType(Microsoft.OData.Edm.IEdmEntityType,Microsoft.OData.Edm.IEdmModel)">
            <summary>
            Gets the declared alternate keys of the most defined entity with a declared key present.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <param name="model">The model to be used.</param>
            <returns>Alternate Keys of this type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ExtensionMethods.FindInContainerAndExtendsRecursively``1(Microsoft.OData.Edm.IEdmEntityContainer,System.String,System.Func{Microsoft.OData.Edm.IEdmEntityContainer,System.String,``0},System.Int32)">
            <summary>
            Search entity set or singleton or operation import in container and its extended containers.
            </summary>
            <typeparam name="T">The IEdmEntityContainerElement derived type.</typeparam>
            <param name="container">The IEdmEntityContainer object, can be CsdlSemanticsEntityContainer.</param>
            <param name="simpleName">A simple (not fully qualified) entity set name, singleton name, operation import name or path.</param>
            <param name="finderFunc">The func to do the search within container.</param>
            <param name="depth">The recursive depth of .Extends containers to search.</param>
            <returns>The found entity set or singleton or operation import.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.TargetPathHelper">
            <summary>
            Helper for <see cref="T:Microsoft.OData.Edm.EdmTargetPath"/> class.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.TargetPathHelper.GetTargetSegments(Microsoft.OData.Edm.IEdmModel,System.String[],System.Boolean)">
            <summary>
            Returns the segments of a target path string as a collection of Edm elements.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="targetSegments">Segments for the target path string.</param>
            <param name="ignoreCase">Property name case-insensitive or not.</param>
            <returns>The collection of <see cref="T:Microsoft.OData.Edm.IEdmElement"/>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.TargetPathHelper.HandleEntityContainer(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.List{Microsoft.OData.Edm.IEdmElement},Microsoft.OData.Edm.IEdmEntityContainer,System.String[],System.Int32,System.Boolean)">
            <summary>
            Returns an entity container element from the specified entity container.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="pathSegments">The path segments of already resolved target segments.</param>
            <param name="entityContainer">The entity container.</param>
            <param name="targetSegments">The array of segments in the target path string.</param>
            <param name="index">The index of the target segment.</param>
            <param name="ignoreCase">Property name case-insensitive or not.</param>
            <returns>An Edm entity container element as an <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable"/>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.TargetPathHelper.HandleContainerElement(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.List{Microsoft.OData.Edm.IEdmElement},Microsoft.OData.Edm.IEdmEntityContainerElement,System.String[],System.Int32,System.Boolean)">
            <summary>
            Returns a schema type or property from an entity container element.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="pathSegments">The path segments of already resolved target segments.</param>
            <param name="entityContainerElement">The entity container element.</param>
            <param name="targetSegments">The array of segments in the target path string.</param>
            <param name="index">The index of the target segment.</param>
            <param name="ignoreCase">Property name case-insensitive or not.</param>
            <returns>An Edm schema type or property element as an <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable"/>.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.TargetPathHelper.HandleSchemaType(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.List{Microsoft.OData.Edm.IEdmElement},Microsoft.OData.Edm.IEdmSchemaType,System.String[],System.Int32,System.Boolean)">
            <summary>
            Returns a property from a schema type.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="pathSegments">The path segments of already resolved target segments.</param>
            <param name="schemaType">The schema type.</param>
            <param name="targetSegments">The array of segments in the target path string.</param>
            <param name="index">The index of the target segment.</param>
            <param name="ignoreCase">Property name case-insensitive or not.</param>
            <returns>An Edm schema type or property element as an <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable"/> object.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.TargetPathHelper.ValidateSchemaType(Microsoft.OData.Edm.IEdmSchemaType,System.Collections.Generic.List{Microsoft.OData.Edm.IEdmElement},System.Int32)">
            <summary>
            Validates a schema type.
            </summary>
            <param name="schemaType">The schema type.</param>
            <param name="pathSegments">The path segments of already resolved target segments.</param>
            <param name="index">The index of the target segment.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.TargetPathHelper.HandleProperty(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.List{Microsoft.OData.Edm.IEdmElement},Microsoft.OData.Edm.IEdmProperty,System.String[],System.Int32,System.Boolean)">
            <summary>
            Returns a schema type or property from a property.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="pathSegments">The path segments of already resolved target segments.</param>
            <param name="edmProperty">The edm property.</param>
            <param name="targetSegments">The array of segments in the target path string.</param>
            <param name="index">The index of the target segment.</param>
            <param name="ignoreCase">Property name case-insensitive or not.</param>
            <returns>An Edm schema type or property element as an <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable"/> object.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.TargetPathHelper.HandleStructuredType(Microsoft.OData.Edm.IEdmModel,System.Collections.Generic.List{Microsoft.OData.Edm.IEdmElement},Microsoft.OData.Edm.IEdmStructuredType,System.String[],System.Int32,System.Boolean)">
            <summary>
            Returns a property from a structured type.
            </summary>
            <param name="model">The Edm model.</param>
            <param name="pathSegments">The path segments of already resolved target segments.</param>
            <param name="structuredType">The structured type.</param>
            <param name="targetSegments">The array of segments in the target path string.</param>
            <param name="index">The index of the target segment.</param>
            <param name="ignoreCase">Property name case-insensitive or not.</param>
            <returns>An Edm property element as an <see cref="T:Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable"/> object.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.ToTraceStringExtensionMethods">
            <summary>
            Contains ToTraceString() extension methods.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.ToTraceStringExtensionMethods.ToTraceString(Microsoft.OData.Edm.IEdmSchemaType)">
            <summary>
            Returns the text representation of the current object.
            </summary>
            <param name="schemaType">Reference to the calling object.</param>
            <returns>The text representation of the current object.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ToTraceStringExtensionMethods.ToTraceString(Microsoft.OData.Edm.IEdmSchemaElement)">
            <summary>
            Returns the text representation of the current object.
            </summary>
            <param name="schemaElement">Reference to the calling object.</param>
            <returns>The text representation of the current object.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ToTraceStringExtensionMethods.ToTraceString(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Returns the text representation of the current object.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The text representation of the current object.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ToTraceStringExtensionMethods.ToTraceString(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Returns the text representation of the current object.
            </summary>
            <param name="type">Reference to the calling object.</param>
            <returns>The text representation of the current object.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.ToTraceStringExtensionMethods.ToTraceString(Microsoft.OData.Edm.IEdmProperty)">
            <summary>
            Returns the text representation of the current object.
            </summary>
            <param name="property">Reference to the calling object.</param>
            <returns>The text representation of the current object.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.IDependencyTrigger">
            <summary>
            Interface describing anything that can be depended upon in tracking semantic changes in an EDM model.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.IDependent">
            <summary>
            Interface describing anything that can be dependent on a dependency trigger in tracking semantic changes in an EDM model.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.IFlushCaches">
            <summary>
            Interface describing anything that can have cached data that might need flushing.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Memoizer`2">
            <summary>
            Remembers the result of evaluating an expensive function so that subsequent
            evaluations are faster. Thread-safe.
            </summary>
            <typeparam name="TArg">Type of the argument to the function.</typeparam>
            <typeparam name="TResult">Type of the function result.</typeparam>
        </member>
        <member name="M:Microsoft.OData.Edm.Memoizer`2.#ctor(System.Func{`0,`1},System.Collections.Generic.IEqualityComparer{`0})">
            <summary>
            Constructs the memoizer.
            </summary>
            <param name="function">Required. Function whose values are being cached.</param>
            <param name="argComparer">Optional. Comparer used to determine if two functions arguments are the same.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.Memoizer`2.Evaluate(`0)">
            <summary>
            Evaluates the wrapped function for the given argument. If the function has already
            been evaluated for the given argument, returns cached value. Otherwise, the value
            is computed and returned.
            </summary>
            <param name="arg">Function argument.</param>
            <returns>Function result.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.Memoizer`2.Result">
            <summary>
            Encapsulates a 'deferred' result. The result is constructed with a delegate (must not
            be null) and when the user requests a value the delegate is invoked and stored.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Memoizer`2.ReaderWriterLockSlim">
            <summary>Read-writer lock, implemented over a Monitor.</summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Memoizer`2.ReaderWriterLockSlim.readerWriterLock">
            <summary>Single object on which to lock.</summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Memoizer`2.ReaderWriterLockSlim.EnterReadLock">
            <summary>Enters a reader lock. Writers will also be blocked.</summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Memoizer`2.ReaderWriterLockSlim.EnterWriteLock">
            <summary>Enters a writer lock. Readers will also be blocked.</summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Memoizer`2.ReaderWriterLockSlim.ExitReadLock">
            <summary>Exits a reader lock.</summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Memoizer`2.ReaderWriterLockSlim.ExitWriteLock">
            <summary>Exits a writer lock.</summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmRes">
             <summary>
                AutoGenerated resource class. Usage:
             
                    string s = EdmRes.GetString(EdmRes.MyIdentifier);
             </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Strings">
            <summary>
               Strongly-typed and parameterized string resources.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmPrimitive_UnexpectedKind">
            <summary>
            A string like "Unexpected primitive type kind."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmPath_UnexpectedKind">
            <summary>
            A string like "Unexpected path type kind."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Annotations_TypeMismatch(System.Object,System.Object)">
            <summary>
            A string like "Annotation of type '{0}' cannot be interpreted as '{1}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.Constructable_VocabularyAnnotationMustHaveTarget">
            <summary>
            A string like "The annotation must have non-null target."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.Constructable_EntityTypeOrCollectionOfEntityTypeExpected">
            <summary>
            A string like "An entity type or a collection of an entity type is expected."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Constructable_TargetMustBeStock(System.Object)">
            <summary>
            A string like "Navigation target entity type must be '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.TypeSemantics_CouldNotConvertTypeReference(System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' could not be converted to be a '{1}' type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_CannotUseElementWithTypeNone">
            <summary>
            A string like "An element with type 'None' cannot be used in a model."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_CannotAddMoreThanOneEntityContainerToOneEdmModel">
            <summary>
            A string like "Cannot add more than one entity container to an edm model."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmEntityContainer_CannotUseElementWithTypeNone">
            <summary>
            A string like "An element with type 'None' cannot be used in an entity container."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueWriter_NonSerializableValue(System.Object)">
            <summary>
            A string like "The value writer cannot write a value of kind '{0}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.ValueHasAlreadyBeenSet">
            <summary>
            A string like "Value has already been set."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.PathSegmentMustNotContainSlash">
            <summary>
            A string like "Path segments must not contain '/' character."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Constructable_DependentPropertyCountMustMatchNumberOfPropertiesOnPrincipalType(System.Object,System.Object)">
            <summary>
            A string like "The number of dependent properties must match the number of key properties on the principal entity type. '{0}' principal properties were provided, but {1} dependent properties were provided."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmType_UnexpectedEdmType">
            <summary>
            A string like "Unexpected Edm type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.NavigationPropertyBinding_PathIsNotValid">
            <summary>
            A string like "The navigation property binding path is not valid."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.MultipleMatchingPropertiesFound(System.Object,System.Object)">
            <summary>
            A string like "More than one properties match the name '{0}' were found in type '{1}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.TargetPath_FirstSegmentMustBeIEdmEntityContainer">
            <summary>
            A string like "First segment must be IEdmEntityContainer."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.TargetPath_SecondSegmentMustBeIEdmEntityContainerElement">
            <summary>
            A string like "Second segment must be IEdmEntityContainerElement."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.TargetPath_SegmentsMustNotContainNullSegment">
            <summary>
            A string like "Target path segments must not contain a null segment."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.TypeCast_HierarchyNotFollowed(System.Object,System.Object)">
            <summary>
            A string like "Encountered invalid type cast. '{0}' is not assignable from '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Edm_Evaluator_NoTermTypeAnnotationOnType(System.Object,System.Object)">
            <summary>
            A string like "Type '{0}' must have a single type annotation with term type '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Edm_Evaluator_NoValueAnnotationOnType(System.Object,System.Object)">
            <summary>
            A string like "Type '{0}' must have a single annotation with term '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Edm_Evaluator_NoValueAnnotationOnElement(System.Object)">
            <summary>
            A string like "Element must have a single annotation with term '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Edm_Evaluator_UnrecognizedExpressionKind(System.Object)">
            <summary>
            A string like "Expression with kind '{0}' cannot be evaluated."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Edm_Evaluator_UnboundFunction(System.Object)">
            <summary>
            A string like "Function '{0}' is not present in the execution environment."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Edm_Evaluator_UnboundPath(System.Object)">
            <summary>
            A string like "Path segment '{0}' has no binding in the execution environment."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.Edm_Evaluator_NoContextPath">
            <summary>
            A string like "A containing object cannot be null when getting value of an annotation with Path in the execution environment."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Edm_Evaluator_FailedTypeAssertion(System.Object)">
            <summary>
            A string like "Value fails to match type '{0}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.Edm_Evaluator_TypeCastNeedsEdmModel">
            <summary>
            A string like "An edm model must be provided for type cast."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_SystemNamespaceEncountered(System.Object)">
            <summary>
            A string like "The namespace '{0}' is a system namespace and cannot be used by non-system types. Please choose a different namespace."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationSourceTypeHasNoKeys(System.Object,System.Object)">
            <summary>
            A string like "The entity set or singleton '{0}' is based on type '{1}' that has no keys defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DuplicateEndName(System.Object)">
            <summary>
            A string like "An end with the name '{0}' is already defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DuplicatePropertyNameSpecifiedInEntityKey(System.Object,System.Object)">
            <summary>
            A string like "The key specified in entity type '{0}' is not valid. Property '{1}' is referenced more than once in the key element."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidComplexTypeAbstract(System.Object)">
            <summary>
            A string like "The complex type '{0}' is marked as abstract. Abstract complex types are only supported in version 1.1 EDM models."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidComplexTypePolymorphic(System.Object)">
            <summary>
            A string like "The complex type '{0}' has a base type specified. Complex type inheritance is only supported in version 1.1 EDM models."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidKeyNullablePart(System.Object,System.Object)">
            <summary>
            A string like "The key part '{0}' for type '{1}' is not valid. All parts of the key must be non nullable."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EntityKeyMustBeScalar(System.Object,System.Object)">
            <summary>
            A string like "The property '{0}' in entity type '{1}' is not valid. All properties that are part of the entity key must be of primitive type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EntityComposableBoundEscapeFunctionMustBeLessOne(System.Object,System.Object)">
            <summary>
            A string like "The entity type '{0}' has more than one composable escape functions '{1}' defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EntityNoncomposableBoundEscapeFunctionMustBeLessOne(System.Object,System.Object)">
            <summary>
            A string like "The entity type '{0}' has more than one non-composable escape functions '{1}' defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidKeyKeyDefinedInBaseClass(System.Object,System.Object)">
            <summary>
            A string like "The key usage is not valid. '{0}' cannot define keys because one of its base classes '{1}' defines keys."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_KeyMissingOnEntityType(System.Object)">
            <summary>
            A string like "The entity type '{0}' has no key defined. Define the key for this entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BadNavigationPropertyUndefinedRole(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The navigation property '{0}' is not valid. The role '{1}' is not defined in relationship '{2}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BadNavigationPropertyRolesCannotBeTheSame(System.Object)">
            <summary>
            A string like "The navigation property '{0}'is not valid. The from role and to role are the same."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BadNavigationPropertyCouldNotDetermineType(System.Object)">
            <summary>
            A string like "The navigation property type could not be determined from the role '{0}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidOperationMultipleEndsInAssociation">
            <summary>
            A string like "An on delete action can only be specified on one end of an association."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EndWithManyMultiplicityCannotHaveOperationsSpecified(System.Object)">
            <summary>
            A string like "The navigation property '{0}' cannot have 'OnDelete' specified since its multiplicity is '*'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EndNameAlreadyDefinedDuplicate(System.Object)">
            <summary>
            A string like "Each name and plural name in a relationship must be unique. '{0}' is already defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_SameRoleReferredInReferentialConstraint(System.Object)">
            <summary>
            A string like "In relationship '{0}', the principal and dependent role of the referential constraint refers to the same role in the relationship type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationPropertyPrincipalEndMultiplicityUpperBoundMustBeOne(System.Object)">
            <summary>
            A string like "The principal navigation property '{0}' has an invalid multiplicity. Valid values for the multiplicity of a principal end are '0..1' or '1'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityOfPrincipalEndDependentPropertiesAllNonnullable(System.Object)">
            <summary>
            A string like "Because all dependent properties of the navigation '{0}' are non-nullable, the multiplicity of the principal end must be '1'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityOfPrincipalEndDependentPropertiesAllNullable(System.Object)">
            <summary>
            A string like "Because all dependent properties of the navigation '{0}' are nullable, the multiplicity of the principal end must be '0..1'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityOfDependentEndMustBeZeroOneOrOne(System.Object)">
            <summary>
            A string like "The multiplicity of the dependent end '{0}' is not valid. Because the dependent properties represent the dependent end key, the multiplicity of the dependent end must be '0..1' or '1'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityOfDependentEndMustBeMany(System.Object)">
            <summary>
            A string like "The multiplicity of the dependent end '{0}' is not valid. Because the dependent properties don't represent the dependent end key, the the multiplicity of the dependent end must be '*'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_MismatchNumberOfPropertiesinRelationshipConstraint">
            <summary>
            A string like "The number of properties in the dependent and principal role in a relationship constraint must be exactly identical."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_TypeMismatchRelationshipConstraint(System.Object,System.Object,System.Object,System.Object,System.Object)">
            <summary>
            A string like "The types of all properties in the dependent role of a referential constraint must be the same as the corresponding property types in the principal role. The type of property '{0}' on entity '{1}' does not match the type of property '{2}' on entity '{3}' in the referential constraint '{4}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidPropertyInRelationshipConstraintDependentEnd(System.Object,System.Object)">
            <summary>
            A string like "There is no property with name '{0}' defined in the type referred to by role '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidPropertyInRelationshipConstraintPrimaryEnd(System.Object,System.Object)">
            <summary>
            A string like "The principal end properties in the referential constraint of the association '{0}' do not match the key of the type referred to by role '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidPropertyType(System.Object)">
            <summary>
            A string like "A property cannot be of type '{0}'. The property type must be a complex, a primitive, an enum, a type definition or an untyped type, or a collection of complex, primitive, enum types, or type definition."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BoundOperationMustHaveParameters(System.Object)">
            <summary>
            A string like "The Bound operation '{0}' must have at least one parameter."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_RequiredParametersMustPrecedeOptional(System.Object)">
            <summary>
            A string like "Required Parameter '{0}' must not follow an optional parameter."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationWithUnsupportedReturnType(System.Object)">
            <summary>
            A string like "The return type is not valid in operation '{0}'. The operation has an unsupported type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationImportEntityTypeDoesNotMatchEntitySet(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The operation import '{0}' returns entities of type '{1}' that cannot exist in the entity set '{2}' specified for the operation import."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationImportEntityTypeDoesNotMatchEntitySet2(System.Object,System.Object)">
            <summary>
            A string like "The operation import '{0}' returns entities of type '{1}' that cannot be returned by the entity set path specified for the operation import."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationImportEntitySetExpressionKindIsInvalid(System.Object,System.Object)">
            <summary>
            A string like "The operation import '{0}' specifies an entity set of kind '{1}' which is not supported in this context. Operation import entity set expression can be either an entity set reference or a path starting with a operation import parameter and traversing navigation properties."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationImportEntitySetExpressionIsInvalid(System.Object)">
            <summary>
            A string like "The operation import '{0}' specifies an entity set expression which is not valid. Operation import entity set expression can be either an entity set reference or a path starting with a operation import parameter and traversing navigation properties."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationImportSpecifiesEntitySetButNotEntityType(System.Object)">
            <summary>
            A string like "The operation import '{0}' specifies an entity set but does not return entities."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationImportCannotImportBoundOperation(System.Object,System.Object)">
            <summary>
            A string like "The operation import '{0}' imports operation '{1}' that is bound. Only an unbound operation can be imported using an operation import."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_FunctionImportWithParameterShouldNotBeIncludedInServiceDocument(System.Object)">
            <summary>
            A string like "The function import '{0}' should not be included in service document because it has parameter."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_FunctionMustHaveReturnType(System.Object)">
            <summary>
            A string like "The function '{0}' must specify a return type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_UrlEscapeFunctionMustBoundFunction(System.Object)">
            <summary>
            A string like "The UrlEscape function '{0}' must be a bound function."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_UrlEscapeFunctionMustHaveOneStringParameter(System.Object)">
            <summary>
            A string like "The UrlEscape function '{0}' must have and only have one 'Edm.String' parameter."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ParameterNameAlreadyDefinedDuplicate(System.Object)">
            <summary>
            A string like "Each parameter name in a operation must be unique. The parameter name '{0}' is already defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DuplicateEntityContainerMemberName(System.Object)">
            <summary>
            A string like "Each member name in an EntityContainer must be unique. A member with name '{0}' is already defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_UnboundFunctionOverloadHasIncorrectReturnType(System.Object)">
            <summary>
            A string like "The function '{0}' has a different return type than other function overloads with the same name. Functions with the same name must have the same return type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationCannotHaveEntitySetPathWithUnBoundOperation(System.Object)">
            <summary>
            A string like "The unbound operation '{0}' has an entity set path defined. Entity set path can only be defined on bound operations."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetPathMissingBindingParameterName(System.Object)">
            <summary>
            A string like "The attribute '{0}' has an invalid value. The path doesn't contain the binding parameter name."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetPathWithFirstPathParameterNotMatchingFirstParameterName(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            A string like "The attribute '{0}' is invalid. The first item of the path '{2}' is '{3}' which does not match the first parameter name {3}. The first segment of the entity set path is required to be the name of the first parameter."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetPathTypeCastSegmentMustBeEntityType(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The attribute '{0}' has an invalid value. The path '{1}' has a type cast segment '{2}' that is not an entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetPathUnknownNavigationProperty(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The attribute '{0}' has an invalid value. The path '{1}' has a navigation property segment '{2}' that is unknown."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetPathInvalidTypeCastSegment(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            A string like "The attribute '{0}' has an invalid value. The path '{1}' has a type cast segment that doesn't derive from the entity type '{2}' for type segment '{3}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetPathWithNonEntityBindingParameter(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The attribute '{0}' has an invalid value. The path '{1}' has a binding parameter that references a type '{2}' that is not an entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetPathUnknownTypeCastSegment(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The attribute '{0}' has an invalid value. The path '{1}' has a type cast segment '{2}' that cannot be found in the model."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationWithEntitySetPathReturnTypeInvalid(System.Object)">
            <summary>
            A string like "The operation '{0}' has an entity set path and with an invalid return type. The return type is required to be an entity type or a collection of entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationWithEntitySetPathAndReturnTypeTypeNotAssignable(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The operation '{0}' entity set path determined entity type '{1}' is not assignable to the return type '{2}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationWithEntitySetPathResolvesToCollectionEntityTypeMismatchesEntityTypeReturnType(System.Object)">
            <summary>
            A string like "The operation '{0}' entity set path was determined to be a reference property but the return type is a collection."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_SchemaElementNameAlreadyDefined(System.Object)">
            <summary>
            A string like "An element with the name '{0}' is already defined."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidMemberNameMatchesTypeName(System.Object)">
            <summary>
            A string like "The member name '{0}' cannot be used in a type with the same name. Member names cannot be the same as their enclosing type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_PropertyNameAlreadyDefined(System.Object)">
            <summary>
            A string like "Each property name in a type must be unique. Property name '{0}' is already defined."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BaseTypeMustHaveSameTypeKind">
            <summary>
            A string like "The base type kind of a structured type must be the same as its derived type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BaseTypeOfOpenTypeMustBeOpen(System.Object)">
            <summary>
            A string like "The base type of open type '{0}' is not open type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_KeyPropertyMustBelongToEntity(System.Object,System.Object)">
            <summary>
            A string like "The key property '{0}' must belong to the entity '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EdmPrimitiveTypeCannotBeUsedAsTypeOfKey(System.Object,System.Object)">
            <summary>
            A string like "The 'Edm.PrimitiveType' cannot be used as the type of a key property '{0}' of an entity type '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EdmPrimitiveTypeCannotBeUsedAsUnderlyingType(System.Object,System.Object)">
            <summary>
            A string like "The 'Edm.PrimitiveType' cannot be used as the underlying type of '{0}' type '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DependentPropertiesMustBelongToDependentEntity(System.Object,System.Object)">
            <summary>
            A string like "The dependent property '{0}' must belong to the dependent entity '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DeclaringTypeMustBeCorrect(System.Object)">
            <summary>
            A string like "The property '{0}' cannot belong to a type other than its declaring type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InaccessibleType(System.Object)">
            <summary>
            A string like "The named type '{0}' could not be found from the model being validated."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_AmbiguousType(System.Object)">
            <summary>
            A string like "The named type '{0}' is ambiguous from the model being validated."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidNavigationPropertyType(System.Object)">
            <summary>
            A string like "The type of the navigation property '{0}' is invalid. The navigation target type must be an entity type or a collection of entity type. The navigation target entity type must match the declaring type of the partner property."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationPropertyWithRecursiveContainmentTargetMustBeOptional(System.Object)">
            <summary>
            A string like "The target multiplicity of the navigation property '{0}' is invalid. If a navigation property has 'ContainsTarget' set to true and declaring entity type of the property is the same or inherits from the target entity type, then the property represents a recursive containment and it must have an optional target represented by a collection or a nullable entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_RecursiveComplexTypedPropertyMustBeOptional(System.Object)">
            <summary>
            A string like "The nullability of the property '{0}' is invalid. If a complex typed property is of the same type (or base type) as its declaring type, then the property represents a recursive containment and the given property must be optional."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationPropertyWithRecursiveContainmentSourceMustBeFromZeroOrOne(System.Object)">
            <summary>
            A string like "The source multiplicity of the navigation property '{0}' is invalid. If a navigation property has 'ContainsTarget' set to true and declaring entity type of the property is the same or inherits from the target entity type, then the property represents a recursive containment and the multiplicity of the navigation source must be zero or one."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationPropertyWithNonRecursiveContainmentSourceMustBeFromOne(System.Object)">
            <summary>
            A string like "The source multiplicity of the navigation property '{0}' is invalid. If a navigation property has 'ContainsTarget' set to true and declaring entity type of the property is not the same as the target entity type, then the property represents a non-recursive containment and the multiplicity of the navigation source must be exactly one."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ComplexTypeMustHaveProperties(System.Object)">
            <summary>
            A string like "The complex type '{0}' is invalid. A complex type must contain at least one property."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DuplicateDependentProperty(System.Object,System.Object)">
            <summary>
            A string like "The dependent property '{0}' of navigation property '{1}' is a duplicate."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ScaleOutOfRange">
            <summary>
            A string like "The scale value can range from 0 through the specified precision value."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_PrecisionOutOfRange">
            <summary>
            A string like "Precision cannot be negative."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_StringMaxLengthOutOfRange">
            <summary>
            A string like "The max length facet specifies the maximum length of an instance of the string type. For unicode equal to 'true', the max length can range from 1 to 2^30, or if 'false', 1 to 2^31."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_MaxLengthOutOfRange">
            <summary>
            A string like "Max length can range from 1 to 2^31."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EnumMemberValueOutOfRange(System.Object)">
            <summary>
            A string like "The value of enum member '{0}' exceeds the range of its underlying type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EnumMemberNameAlreadyDefined(System.Object)">
            <summary>
            A string like "Each member name of an enum type must be unique. Enum member name '{0}' is already defined."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OpenTypesSupportedForEntityTypesOnly">
            <summary>
            A string like "Only entity types can be open types."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_IsUnboundedCannotBeTrueWhileMaxLengthIsNotNull">
            <summary>
            A string like "The string reference is invalid because if 'IsUnbounded' is true 'MaxLength' must be null."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidElementAnnotationMismatchedTerm">
            <summary>
            A string like "The declared name and namespace of the annotation must match the name and namespace of its xml value."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidElementAnnotationValueInvalidXml">
            <summary>
            A string like "The value of an annotation marked to be serialized as an xml element must have a well-formed xml value."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidElementAnnotationNotIEdmStringValue">
            <summary>
            A string like "The value of an annotation marked to be serialized as an xml element must be IEdmStringValue."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InvalidElementAnnotationNullNamespaceOrName">
            <summary>
            A string like "The value of an annotation marked to be serialized as an xml element must be a string representing an xml element with non-empty name and namespace."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_CannotAssertNullableTypeAsNonNullableType(System.Object)">
            <summary>
            A string like "Cannot assert the nullable type '{0}' as a non-nullable type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ExpressionPrimitiveKindCannotPromoteToAssertedType(System.Object,System.Object)">
            <summary>
            A string like "Cannot promote the primitive type '{0}' to the specified primitive type '{1}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NullCannotBeAssertedToBeANonNullableType">
            <summary>
            A string like "Null value cannot have a non-nullable type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ExpressionNotValidForTheAssertedType">
            <summary>
            A string like "The type of the expression is incompatible with the asserted type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_CollectionExpressionNotValidForNonCollectionType">
            <summary>
            A string like "A collection expression is incompatible with a non-collection type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_PrimitiveConstantExpressionNotValidForNonPrimitiveType">
            <summary>
            A string like "A primitive expression is incompatible with a non-primitive type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_RecordExpressionNotValidForNonStructuredType">
            <summary>
            A string like "A record expression is incompatible with a non-structured type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_RecordExpressionMissingProperty(System.Object)">
            <summary>
            A string like "The record expression does not have a constructor for a property named '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_RecordExpressionHasExtraProperties(System.Object)">
            <summary>
            A string like "The type of the record expression is not open and does not contain a property named '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DuplicateAnnotation(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The annotated element '{0}' has multiple annotations with the term '{1}' and the qualifier '{2}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_IncorrectNumberOfArguments(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The function application provides '{0}' arguments, but the function '{1}' expects '{2}' arguments."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DuplicateEntityContainerName(System.Object)">
            <summary>
            A string like "Each entity container name in a function must be unique. The name '{0}' is already defined."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ExpressionPrimitiveKindNotValidForAssertedType">
            <summary>
            A string like "The primitive expression is not compatible with the asserted type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ExpressionEnumKindNotValidForAssertedType">
            <summary>
            A string like "The enum expression is not compatible with the asserted type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_IntegerConstantValueOutOfRange">
            <summary>
            A string like "The value of the integer constant is out of range for the asserted type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_StringConstantLengthOutOfRange(System.Object,System.Object)">
            <summary>
            A string like "The value of the string constant is '{0}' characters long, but the max length of its type is '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BinaryConstantLengthOutOfRange(System.Object,System.Object)">
            <summary>
            A string like "The value of the binary constant is '{0}' characters long, but the max length of its type is '{1}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_TypeMustNotHaveKindOfNone">
            <summary>
            A string like "A type without other errors must not have kind of none."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_SchemaElementMustNotHaveKindOfNone(System.Object)">
            <summary>
            A string like "A schema element without other errors must not have kind of none. The kind of schema element '{0}' is none."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_PropertyMustNotHaveKindOfNone(System.Object)">
            <summary>
            A string like "A property without other errors must not have kind of none. The kind of property '{0}' is none."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_PrimitiveTypeMustNotHaveKindOfNone(System.Object)">
            <summary>
            A string like "A primitive type without other errors must not have kind of none. The kind of primitive type '{0}' is none."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EntityContainerElementMustNotHaveKindOfNone(System.Object)">
            <summary>
            A string like "An entity container element without other errors must not have kind of none. The kind of entity container element '{0}' is none."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DuplicateNavigationPropertyMapping(System.Object,System.Object)">
            <summary>
            A string like "The entity set '{0}' should have only a single mapping for the property '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationMappingMustBeBidirectional(System.Object,System.Object)">
            <summary>
            A string like "The binding of the entity set or singleton '{0}' on navigation property '{1}' is invalid, the binding of bidirectional navigation property must be bidirectional if specified."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EntitySetCanOnlyBeContainedByASingleNavigationProperty(System.Object)">
            <summary>
            A string like "The entity set '{0}' is invalid because it is contained by more than one navigation property."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_TypeAnnotationMissingRequiredProperty(System.Object)">
            <summary>
            A string like "The type annotation is missing a binding for the property '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_TypeAnnotationHasExtraProperties(System.Object)">
            <summary>
            A string like "They type of the type annotation is not open, and does not contain a property named '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EnumMustHaveIntegralUnderlyingType(System.Object)">
            <summary>
            A string like "The underlying type of '{0}' is not valid. The underlying type of an enum type must be an integral type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InaccessibleTerm(System.Object)">
            <summary>
            A string like "The term '{0}' could not be found from the model being validated."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_InaccessibleTarget(System.Object)">
            <summary>
            A string like "The target '{0}' could not be found from the model being validated."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_VocabularyAnnotationApplyToNotAllowedAnnotatable(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The target '{0}' of the annotation is not allowed in the AppliesTo '{1}' of the term '{2}'."."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ElementDirectValueAnnotationFullNameMustBeUnique(System.Object,System.Object)">
            <summary>
            A string like "An element already has a direct annotation with the namespace '{0}' and name '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NoEntitySetsFoundForType(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The association set '{0}' cannot assume an entity set for the role '{2}' because there are no entity sets for the role type '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_CannotInferEntitySetWithMultipleSetsPerType(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The association set '{0}' must specify an entity set for the role '{2}' because there are multiple entity sets for the role type '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EntitySetRecursiveNavigationPropertyMappingsMustPointBackToSourceEntitySet(System.Object,System.Object)">
            <summary>
            A string like "Because the navigation property '{0}' is recursive, the mapping from the entity set '{1}' must point back to itself."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationPropertyEntityMustNotIndirectlyContainItself(System.Object)">
            <summary>
            A string like "The navigation property '{0}' is invalid because it indirectly contains itself."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_PathIsNotValidForTheGivenContext(System.Object)">
            <summary>
            A string like "The path cannot be resolved in the given context. The segment '{0}' failed to resolve."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationPropertyMappingMustPointToValidTargetForProperty(System.Object,System.Object)">
            <summary>
            A string like "The entity set or singleton '{1}' is not a valid destination for the navigation property '{0}' because it cannot hold an element of the target entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ModelDuplicateBoundFunctionParameterNames(System.Object)">
            <summary>
            A string like "The bound function '{0}' is a duplicate of other bound functions. For bound functions the combination of the namespace, name, binding parameter type and unordered set of parameter names uniquely identifies a bound function."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ModelDuplicateBoundFunctionParameterTypes(System.Object)">
            <summary>
            A string like "The bound function '{0}' is a duplicate of other bound functions. For bound functions the combination of the namespace, name, binding parameter type and ordered set of parameter types uniquely identifies a bound function."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ModelDuplicateUnBoundFunctionsParameterNames(System.Object)">
            <summary>
            A string like "The unbound function '{0}' is a duplicate of other unbound functions. For unbound functions the combination of the namespace, name and unordered set of parameter names uniquely identifies an unbound function."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ModelDuplicateUnBoundFunctionsParameterTypes(System.Object)">
            <summary>
            A string like "The unbound function '{0}' is a duplicate of other unbound functions. For unbound functions the combination of the namespace, name and ordered set of parameter types uniquely identifies an unbound function."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ModelDuplicateBoundActions(System.Object)">
            <summary>
            A string like "The bound action '{0}' is a duplicate of other bound actions. For bound actions the combination of the namespace, name, and binding parameter type uniquely identifies an bound action."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_ModelDuplicateUnBoundActions(System.Object)">
            <summary>
            A string like "The unbound action '{0}' is a duplicate of other unbound actions. For unbound actions the combination of the namespace, and name uniquely identifies an unbound action."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_BoundFunctionOverloadsMustHaveSameReturnType(System.Object,System.Object)">
            <summary>
            A string like "The bound function overload '{0}' does not have the same return type as other function overloads. Expected type '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EntitySetTypeMustBeCollectionOfEntityType(System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' of the entity set '{1}' is not valid, it must be collection of entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_SingletonTypeMustBeEntityType(System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' of the singleton '{1}' is not valid, it must be entity type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_NavigationPropertyOfCollectionTypeMustNotTargetToSingleton(System.Object,System.Object)">
            <summary>
            A string like "The navigation property mapping '{0}' is invalid because its type is collection but target to a singleton '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_StructuredTypeBaseTypeCannotBeAbstractType(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' cannot be the base type of an '{1}' type '{2}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_PropertyTypeCannotBeCollectionOfAbstractType(System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' cannot be used as the type of a property '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_OperationReturnTypeCannotBeCollectionOfAbstractType(System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' cannot be used as the return type of a function '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EdmEntityTypeCannotBeTypeOfSingleton(System.Object)">
            <summary>
            A string like "The type 'Edm.EntityType' cannot be used as the type of a singleton '{0}' in an entity container."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_EdmEntityTypeCannotBeTypeOfEntitySet(System.Object)">
            <summary>
            A string like "The type 'Edm.EntityType' cannot be used as the type of an entity set '{0}' in an entity container."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_DeclaringTypeOfNavigationSourceCannotHavePathProperty(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The declaring type '{0}' of {1} '{2}' cannot include path type property."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Semantic_TypeOfNavigationPropertyCannotHavePathProperty(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' of navigation property '{1}' on declaring type '{2}' cannot include path type property."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_MissingName">
            <summary>
            A string like "The name is missing or not valid."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_EdmModel_NameIsTooLong(System.Object)">
            <summary>
            A string like "The specified name must not be longer than 480 characters: '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_EdmModel_NameIsNotAllowed(System.Object)">
            <summary>
            A string like "The specified name is not allowed: '{0}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_MissingNamespaceName">
            <summary>
            A string like "The namespace name is missing or not valid."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_EdmModel_NamespaceNameIsTooLong(System.Object)">
            <summary>
            A string like "The specified name must not be longer than 480 characters: '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_EdmModel_NamespaceNameIsNotAllowed(System.Object)">
            <summary>
            A string like "The specified namespace name is not allowed: '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_PropertyMustNotBeNull(System.Object,System.Object)">
            <summary>
            A string like "The value of the property '{0}.{1}' must not be null."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_EnumPropertyValueOutOfRange(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            A string like "The property '{0}.{1}' of type '{2}' has value '{3}' that is not a valid enum member."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_InterfaceKindValueMismatch(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            A string like "An object with the value '{0}' of the '{1}.{2}' property must implement '{3}' interface."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_TypeRefInterfaceTypeKindValueMismatch(System.Object,System.Object)">
            <summary>
            A string like "An object implementing '{0}' interface has type definition of kind '{1}'. The type reference interface must match to the kind of the definition."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_InterfaceKindValueUnexpected(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The value '{0}' of the property '{1}.{2}' is not semantically valid. A semantically valid model must not contain elements of kind '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_EnumerableMustNotHaveNullElements(System.Object,System.Object)">
            <summary>
            A string like "The value of the enumeration the property '{0}.{1}' contains a null element. Enumeration properties must not contain null elements."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_NavigationPartnerInvalid(System.Object)">
            <summary>
            A string like "The partner of the navigation property '{0}' must not be the same property, and must point back to the navigation property."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmModel_Validator_Syntactic_InterfaceCriticalCycleInTypeHierarchy(System.Object)">
            <summary>
            A string like "The chain of base types of type '{0}' is cyclic."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.Serializer_SingleFileExpected">
            <summary>
            A string like "Single file provided but model cannot be serialized into single file."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Serializer_UnknownEdmVersion(System.Object)">
            <summary>
            A string like "Unknown Edm version '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Serializer_UnknownEdmxVersion(System.Object)">
            <summary>
            A string like "Unknown Edmx version '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Serializer_NonInlineOperationImportReturnType(System.Object)">
            <summary>
            A string like "The operation import '{0}' could not be serialized because its return type cannot be represented inline."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Serializer_ReferencedTypeMustHaveValidName(System.Object)">
            <summary>
            A string like "A referenced type can not be serialized with an invalid name. The name '{0}' is invalid."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Serializer_OutOfLineAnnotationTargetMustHaveValidName(System.Object)">
            <summary>
            A string like "The annotation can not be serialized with an invalid target name. The name '{0}' is invalid."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.Serializer_NoSchemasProduced">
            <summary>
            A string like "No CSDL is written because no schema elements could be produced. This is likely because the model is empty."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_EmptyFile(System.Object)">
            <summary>
            A string like "{0} does not contain a schema definition, or the XmlReader provided started at the end of the file."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.XmlParser_EmptySchemaTextReader">
            <summary>
            A string like "The source XmlReader does not contain a schema definition or started at the end of the file."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_MissingAttribute(System.Object,System.Object)">
            <summary>
            A string like "Required schema attribute '{0}' is not present on element '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_TextNotAllowed(System.Object)">
            <summary>
            A string like "The current schema element does not support text '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_UnexpectedAttribute(System.Object)">
            <summary>
            A string like "The attribute '{0}' was not expected in the given context."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_UnexpectedElement(System.Object)">
            <summary>
            A string like "The schema element '{0}' was not expected in the given context."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_UnusedElement(System.Object)">
            <summary>
            A string like "Unused schema element: '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_UnexpectedNodeType(System.Object)">
            <summary>
            A string like "Unexpected XML node type: {0}."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_UnexpectedRootElement(System.Object,System.Object)">
            <summary>
            A string like "The element '{0}' was unexpected for the root element. The root element should be {1}."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_UnexpectedRootElementWrongNamespace(System.Object,System.Object)">
            <summary>
            A string like "The namespace '{0}' is invalid. The root element is expected to belong to one of the following namespaces: '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.XmlParser_UnexpectedRootElementNoNamespace(System.Object)">
            <summary>
            A string like "The root element has no namespace. The root element is expected to belong to one of the following namespaces: '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidEntitySetPathWithUnboundAction(System.Object,System.Object)">
            <summary>
            A string like "The {0} '{1}' is invalid. The entitySetPath value is not allowed when IsBound attribute is false."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidAlias(System.Object)">
            <summary>
            A string like "The alias '{0}' is not a valid simple name."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidDeleteAction(System.Object)">
            <summary>
            A string like "The delete action '{0}' is not valid. Action must be: 'None', 'Cascade', or 'Restrict'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_MissingTypeAttributeOrElement">
            <summary>
            A string like "An XML attribute or sub-element representing an EDM type is missing."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidEndRoleInRelationshipConstraint(System.Object,System.Object)">
            <summary>
            A string like "There is no Role with name '{0}' defined in relationship '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidMultiplicity(System.Object)">
            <summary>
            A string like "The multiplicity '{0}' is not valid. Multiplicity must be: '*', '0..1', or '1'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_ReferentialConstraintRequiresOneDependent">
            <summary>
            A string like "Referential constraints requires one dependent role. Multiple dependent roles were specified for this referential constraint."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_ReferentialConstraintRequiresOnePrincipal">
            <summary>
            A string like "Referential constraints requires one principal role. Multiple principal roles were specified for this referential constraint."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_InvalidIfExpressionIncorrectNumberOfOperands">
            <summary>
            A string like "If expression must contain 3 operands, the first being a boolean test, the second being being evaluated if the first is true, and the third being evaluated if the first is false."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_InvalidIsTypeExpressionIncorrectNumberOfOperands">
            <summary>
            A string like "The IsType expression must contain 1 operand."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_InvalidCastExpressionIncorrectNumberOfOperands">
            <summary>
            A string like "The Cast expression must contain 1 operand."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_InvalidLabeledElementExpressionIncorrectNumberOfOperands">
            <summary>
            A string like "The LabeledElement expression must contain 1 operand."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidTypeName(System.Object)">
            <summary>
            A string like "The type name '{0}' is invalid. The type name must be that of a primitive type, a fully qualified name or an inline 'Collection' or 'Ref' type."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidQualifiedName(System.Object)">
            <summary>
            A string like "The qualified name '{0}' is invalid. A qualified name must have a valid namespace or alias, and a valid name."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_NoReadersProvided">
            <summary>
            A string like "A model could not be produced because no XML readers were provided."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_NullXmlReader">
            <summary>
            A string like "A model could not be produced because one of the XML readers was null."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidEntitySetPath(System.Object)">
            <summary>
            A string like "'{0}' is not a valid entity set path."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlParser_InvalidEnumMemberPath(System.Object)">
            <summary>
            A string like "'{0}' is not a valid enum member path."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_CannotSpecifyNullableAttributeForNavigationPropertyWithCollectionType">
            <summary>
            A string like "The 'Nullable' attribute cannot be specified for a navigation property with collection type."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlParser_MetadataDocumentCannotHaveMoreThanOneEntityContainer">
            <summary>
            A string like "Metadata document cannot have more than one entity container."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlSemantics_ReferentialConstraintMismatch">
            <summary>
            A string like " There was a mismatch in the principal and dependent ends of the referential constraint."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.CsdlSemantics_EnumMemberMustHaveValue">
            <summary>
            A string like "The enumeration member must have a value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlSemantics_ImpossibleAnnotationsTarget(System.Object)">
            <summary>
            A string like "The annotation target '{0}' could not be resolved because it cannot refer to an annotatable element."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlSemantics_DuplicateAlias(System.Object,System.Object)">
            <summary>
            A string like "The schema '{0}' contains the alias '{1}' more than once."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_UnexpectedJsonValueKind(System.Object,System.Object,System.Object)">
            <summary>
            A string like "An unexpected '{0}' value kind was found when parsing the JSON path '{1}'. A '{2}' value kind was expected."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_MissingMemberInObject(System.Object,System.Object)">
            <summary>
            A string like "A member '{0}' is missing when parsing the JSON path '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_UnexpectedJsonMember(System.Object,System.Object)">
            <summary>
            A string like "A member '{0}' with value type '{1}' is unexpected."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_CannotReadValueAsType(System.Object,System.Object,System.Object)">
            <summary>
            A string like "Cannot read the value '{0}' at JSON path '{1}' as '{2}' numeric value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_MissingKindMember(System.Object,System.Object)">
            <summary>
            A string like "A schema '{0}' object MUST contain the member '$Kind' with a string value of '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_MissingRequiredPropertyInObject(System.Object,System.Object)">
            <summary>
            A string like "A property '{0}' is missing when parsing the JSON path '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_UnknownJsonElementValueKind(System.Object,System.Object)">
            <summary>
            A string like "Found an unknown value kind '{0}' when parsing the JSON path '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_InvalidJsonNumberType(System.Object,System.Object)">
            <summary>
            A string like "Cannot parse a JSON number '{0}' when parsing the JSON path '{1}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_UnsupportedJsonMember(System.Object)">
            <summary>
            A string like "A member at JSON path '{0}' is not supported."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_InvalidCsdlVersion(System.Object)">
            <summary>
            A string like "The version specified at '{0}' is not valid. It should be a string containing either '4.0' or '4.01'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.CsdlJsonParser_SchemaCannotHaveMoreThanOneEntityContainer(System.Object)">
            <summary>
            A string like "The schema object at '{0}' cannot have more than one entity container."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmxParser_EdmxVersionMismatch">
            <summary>
            A string like "The EDMX version specified in the 'Version' attribute does not match the version corresponding to the namespace of the 'Edmx' element."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmxParser_BodyElement(System.Object)">
            <summary>
            A string like "Unexpected {0} element while parsing Edmx. Edmx is expected to have at most one of 'Runtime' or 'DataServices' elements."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmxParser_InvalidReferenceIncorrectNumberOfIncludes">
            <summary>
            A string like "edmx:Reference must contain at least one edmx:Includes or edmx:IncludeAnnotations."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmxParser_UnresolvedReferenceUriInEdmxReference">
            <summary>
            A string like "Unresolved Uri found in edmx:Reference, getReferencedModelReaderFunc should not return null when the URI is not a well-known schema."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmParseException_ErrorsEncounteredInEdmx(System.Object)">
            <summary>
            A string like "Encountered the following errors when parsing the CSDL document: \r\n{0}"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidBoolean(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid boolean. The value must be 'true' or 'false'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidInteger(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid integer. The value must be a valid 32 bit integer."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidLong(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid integer. The value must be a valid 64 bit integer."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidFloatingPoint(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid floating point value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidMaxLength(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid integer. The value must be a valid 32 bit integer or 'Max'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidSrid(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid SRID. The value must either be a 32 bit integer or 'Variable'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidScale(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid scale. The value must either be a 32 bit integer or 'Variable'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidGuid(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid Guid."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidDecimal(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid decimal."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidDateTimeOffset(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid date time offset value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidDateTime(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid date time value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidDate(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid date value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidDuration(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid duration value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidBinary(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid binary value. The value must be a hexadecimal string and must not be prefixed by '0x'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.ValueParser_InvalidTimeOfDay(System.Object)">
            <summary>
            A string like "The value '{0}' is not a valid TimeOfDay value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_Multiplicity(System.Object)">
            <summary>
            A string like "Invalid multiplicity: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_SchemaElementKind(System.Object)">
            <summary>
            A string like "Invalid schema element kind: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_TypeKind(System.Object)">
            <summary>
            A string like "Invalid type kind: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_PrimitiveKind(System.Object)">
            <summary>
            A string like "Invalid primitive kind: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_ContainerElementKind(System.Object)">
            <summary>
            A string like "Invalid container element kind: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_CsdlTarget(System.Object)">
            <summary>
            A string like "Invalid CSDL target: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_PropertyKind(System.Object)">
            <summary>
            A string like "Invalid property kind: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.UnknownEnumVal_ExpressionKind(System.Object)">
            <summary>
            A string like "Invalid expression kind: '{0}'"
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_AmbiguousElementBinding(System.Object)">
            <summary>
            A string like "The name '{0}' is ambiguous."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedType(System.Object)">
            <summary>
            A string like "The type '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedComplexType(System.Object)">
            <summary>
            A string like "The complex type '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedEntityType(System.Object)">
            <summary>
            A string like "The entity type '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedPrimitiveType(System.Object)">
            <summary>
            A string like "The primitive type '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedOperation(System.Object)">
            <summary>
            A string like "The operation '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_AmbiguousOperation(System.Object)">
            <summary>
            A string like "The operation '{0}' could not be resolved because more than one operation could be used for this application."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_OperationParametersDontMatch(System.Object)">
            <summary>
            A string like "The operation '{0}' could not be resolved because none of the operations with that name take the correct set of parameters."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedEntitySet(System.Object)">
            <summary>
            A string like "The entity set '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedEntityContainer(System.Object)">
            <summary>
            A string like "The entity container '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedEnumType(System.Object)">
            <summary>
            A string like "The enum type '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedEnumMember(System.Object)">
            <summary>
            A string like "The enum member '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedProperty(System.Object)">
            <summary>
            A string like "The property '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedParameter(System.Object)">
            <summary>
            A string like "The parameter '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedReturn(System.Object)">
            <summary>
            A string like "The return of operation '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedLabeledElement(System.Object)">
            <summary>
            A string like "The labeled element '{0}' could not be found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_CyclicEntity(System.Object)">
            <summary>
            A string like "The entity '{0}' is invalid because its base type is cyclic."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_CyclicComplex(System.Object)">
            <summary>
            A string like "The complex type '{0}' is invalid because its base type is cyclic."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_CyclicEntityContainer(System.Object)">
            <summary>
            A string like "The entity container '{0}' is invalid because its extends hierarchy is cyclic."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Bad_UnresolvedNavigationPropertyPath(System.Object,System.Object)">
            <summary>
            A string like "A navigation property could not be found for the path '{0}' starting from the type '{1}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.RuleSet_DuplicateRulesExistInRuleSet">
            <summary>
            A string like "The same rule cannot be in the same rule set twice."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmToClr_UnsupportedType(System.Object)">
            <summary>
            A string like "Conversion of EDM values to a CLR type with type {0} is not supported."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmToClr_StructuredValueMappedToNonClass">
            <summary>
            A string like "Conversion of an EDM structured value is supported only to a CLR class."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmToClr_IEnumerableOfTPropertyAlreadyHasValue(System.Object,System.Object)">
            <summary>
            A string like "Cannot initialize a property '{0}' on an object of type '{1}'. The property already has a value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmToClr_StructuredPropertyDuplicateValue(System.Object)">
            <summary>
            A string like "An EDM structured value contains multiple values for the property '{0}'. Conversion of an EDM structured value with duplicate property values is not supported."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmToClr_CannotConvertEdmValueToClrType(System.Object,System.Object)">
            <summary>
            A string like "Conversion of an EDM value of the type '{0}' to the CLR type '{1}' is not supported."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmToClr_CannotConvertEdmCollectionValueToClrType(System.Object)">
            <summary>
            A string like "Conversion of an edm collection value to the CLR type '{0}' is not supported. EDM collection values can be converted to System.Collections.Generic.IEnumerable&lt;T&gt;, System.Collections.Generic.IList&lt;T&gt; or System.Collections.Generic.ICollection&lt;T&gt;."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmToClr_TryCreateObjectInstanceReturnedWrongObject(System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' of the object returned by the TryCreateObjectInstance delegate is not assignable to the expected type '{1}'."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.EdmUtil_NullValueForMimeTypeAnnotation">
            <summary>
            A string like "The MIME type annotation must not have a null value."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmUtil_InvalidAnnotationValue(System.Object,System.Object)">
            <summary>
            A string like "An annotation of type string was expected for the '{{http://docs.oasis-open.org/odata/ns/metadata}}:{0}' annotation, but an annotation of type '{1}' was found."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.PlatformHelper_DateTimeOffsetMustContainTimeZone(System.Object)">
            <summary>
            A string like "The time zone information is missing on the DateTimeOffset value '{0}'. A DateTimeOffset value must contain the time zone information."
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Strings.Date_InvalidAddedOrSubtractedResults">
            <summary>
            A string like "The added or subtracted value results in an un-representable Date."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Date_InvalidDateParameters(System.Object,System.Object,System.Object)">
            <summary>
            A string like "The Year '{0}', Month '{1}' and Day '{2}' parameters describe an un-representable Date."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Date_InvalidParsingString(System.Object)">
            <summary>
            A string like "String '{0}' was not recognized as a valid Date."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.Date_InvalidCompareToTarget(System.Object)">
            <summary>
            A string like "Target object '{0}' is not an instance with type of Date."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.TimeOfDay_InvalidTimeOfDayParameters(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            A string like "The Hour '{0}', Minute '{1}', Second '{2}' and Millisecond '{3}' parameters describe an un-representable TimeOfDay."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.TimeOfDay_TicksOutOfRange(System.Object)">
            <summary>
            A string like "The ticks value '{0}' is out of representable TimeOfDay range."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.TimeOfDay_ConvertErrorFromTimeSpan(System.Object)">
            <summary>
            A string like "The TimeSpan value '{0}' is out of representable TimeOfDay range."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.TimeOfDay_InvalidParsingString(System.Object)">
            <summary>
            A string like "String '{0}' was not recognized as a valid TimeOfDay."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.TimeOfDay_InvalidCompareToTarget(System.Object)">
            <summary>
            A string like "Target object '{0}' is not an instance with type of TimeOfDay."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmVocabularyAnnotations_DidNotFindDefaultValue(System.Object)">
            <summary>
            A string like "Annotation expressions must specify a value or use a term with a specified default value. Cannot find a default value for the given annotation term, '{0}'."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmVocabularyAnnotations_TermTypeNotSupported(System.Object)">
            <summary>
            A string like "Term type '{0}' is not supported for value retrieval."
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Strings.EdmVocabularyAnnotations_InvalidLocationForTargetPathAnnotation(System.Object)">
            <summary>
            A string like "Invalid to set inline location for a path target '{0}'."
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Error">
            <summary>
               Strongly-typed and parameterized exception factory.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Error.ArgumentNull(System.String)">
            <summary>
            The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Error.ArgumentOutOfRange(System.String)">
            <summary>
            The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Error.NotImplemented">
            <summary>
            The exception that is thrown when the author has not yet implemented the logic at this point in the program. This can act as an exception based TODO tag.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Error.NotSupported">
            <summary>
            The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.DefaultPrimitiveValueConverter">
            <summary>
            The default implementation of primitive value converter for unsigned ints, which:
                converts UInt16 to Int32,
                converts UInt32 to Int64,
                converts UInt64 to Decimal.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.IPrimitiveValueConverter">
            <summary>
            Class for defining a primitive value conversion for a type definition.
            Suppose a type definition defines a primitive type X (underlying type) as a new type Y,
            and the type Y has a logically corresponding CLR type Z,
            the ConvertToUnderlyingType method converts value from Z to X
            and the ConvertFromUnderlyingType method converts value from X to Z.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.IPrimitiveValueConverter.ConvertToUnderlyingType(System.Object)">
            <summary>
            Converts the given primitive value from the CLR type to the underlying type defined in a type definition.
            </summary>
            <param name="value">The given CLR value.</param>
            <returns>The converted value of the underlying type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.IPrimitiveValueConverter.ConvertFromUnderlyingType(System.Object)">
            <summary>
            Converts the given primitive value from the underlying type to the CLR type defined in a type definition.
            </summary>
            <param name="value">The given value of the CLR type.</param>
            <returns>The converted CLR value.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.PassThroughPrimitiveValueConverter">
            <summary>
            An implementation of primitive value converter that directly pass through the primitive value.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.PrimitiveValueConverterConstants">
            <summary>
            The constants for primitive value converters.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.UInt16TypeName">
            <summary>
            The name of the type definition for UInt16.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.UInt32TypeName">
            <summary>
            The name of the type definition for UInt32.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.UInt64TypeName">
            <summary>
            The name of the type definition for UInt64.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.DefaultUInt16UnderlyingType">
            <summary>
            The default underlying type of the type definition for UInt16.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.DefaultUInt32UnderlyingType">
            <summary>
            The default underlying type of the type definition for UInt32.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.PrimitiveValueConverterConstants.DefaultUInt64UnderlyingType">
            <summary>
            The default underlying type of the type definition for UInt64.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.AmbiguousBinding`1">
            <summary>
            Represents a name binding to more than one item.
            </summary>
            <typeparam name="TElement">Type of the ambiguous element.</typeparam>
        </member>
        <member name="P:Microsoft.OData.Edm.AmbiguousEntityContainerBinding.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.AmbiguousLabeledExpressionBinding">
            <summary>
            Represents a labeled expression binding to more than one item.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.AmbiguousOperationBinding.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.AmbiguousOperationImportBinding">
            <summary>
            Class that represents an unresolved operation import binding to two or more operation imports.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.AmbiguousPropertyBinding.PropertyKind">
            <summary>
            Gets the kind of this property.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.AmbiguousPropertyBinding.DeclaringType">
            <summary>
            Gets the type that this property belongs to.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.AmbiguousTermBinding">
            <summary>
            Represents a name binding to more than one item.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.AmbiguousTermBinding.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.AmbiguousTypeBinding">
            <summary>
            Represents a name binding to more than one item.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.AmbiguousTypeBinding.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadBinaryTypeReference">
            <summary>
            Represents a reference to a semantically invalid EDM binary type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadCollectionType">
            <summary>
            Represents a semantically invalid EDM collection type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadComplexType">
            <summary>
            Represents a semantically invalid EDM complex type definition.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadDecimalTypeReference">
            <summary>
            Represents a reference to a semantically invalid EDM decimal type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadElement">
            <summary>
            Represents an invalid EDM element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadEntityContainer">
            <summary>
            Represents a semantically invalid EDM entity container.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.BadEntityContainer.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.BadEntityContainer.SchemaElementKind">
            <summary>
            Gets the kind of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadEntityReferenceType">
            <summary>
            Represents a semantically invalid EDM entity reference type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadEntitySet">
            <summary>
            Represents a semantically invalid EDM entity set.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadEntityType">
            <summary>
            Represents a semantically invalid EDM entity type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadEnumType">
            <summary>
            Represents a semantically invalid EDM enumeration type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.BadEnumType.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadLabeledExpression">
            <summary>
            Represents a semantically invalid EDM labeled expression.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadNamedStructuredType">
            <summary>
            Represents a semantically invalid EDM named structured type definition.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.BadNamedStructuredType.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadNavigationProperty">
            <summary>
            Represents a semantically invalid EDM navigation property.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadPathType">
            <summary>
            Represents a semantically invalid EDM path type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadPrimitiveType">
            <summary>
            Represents a semantically invalid EDM primitive type definition.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.BadPrimitiveType.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadPrimitiveTypeReference">
            <summary>
            Represents a reference to a semantically invalid EDM primitive type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadProperty">
            <summary>
            Represents a semantically invalid EDM property.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadSpatialTypeReference">
            <summary>
            Represents a reference to a semantically invalid EDM spatial type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadStringTypeReference">
            <summary>
            Represents a reference to a semantically invalid EDM string type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadStructuredType">
            <summary>
            Represents a semantically invalid EDM structured type definition.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadTemporalTypeReference">
            <summary>
            Represents a reference to a semantically invalid EDM temporal (Duration, DateTime, DateTimeOffset) type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.BadTypeDefinition">
            <summary>
            Represents a semantically invalid EDM type definition.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.BadTypeDefinition.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCoreModel">
            <summary>
            Provides predefined declarations relevant to EDM semantics.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmCoreModel.Instance">
            <summary>
            The default core EDM model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModel.Namespace">
            <summary>
            Gets the namespace of this core model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModel.SchemaElements">
            <summary>
            Gets the types defined in this core model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModel.DeclaredNamespaces">
            <summary>
            Gets the collection of namespaces that schema elements use contained in this model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModel.VocabularyAnnotations">
            <summary>
            Gets the vocabulary annotations defined in this model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModel.ReferencedModels">
            <summary>
            Gets the collection of models referred to by this model.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModel.DirectValueAnnotationsManager">
            <summary>
            Gets the model's annotations manager.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModel.EntityContainer">
            <summary>
            Gets the only one entity container of the model.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetCollection(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Gets a reference to a non-atomic collection type definition.
            </summary>
            <param name="elementType">Type of elements in the collection.</param>
            <returns>A new non-atomic collection type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindDeclaredType(System.String)">
            <summary>
            Searches for a type with the given name in this model only and returns null if no such type exists.
            </summary>
            <param name="qualifiedName">The qualified name of the type being found.</param>
            <returns>The requested type, or null if no such type exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindDeclaredBoundOperations(Microsoft.OData.Edm.IEdmType)">
            <summary>
            Searches for bound operations based on the binding type, returns an empty enumerable if no operation exists.
            </summary>
            <param name="bindingType">Type of the binding.</param>
            <returns>A set of operations that share the binding type or empty enumerable if no such operation exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindDeclaredBoundOperations(System.String,Microsoft.OData.Edm.IEdmType)">
            <summary>
            Searches for bound operations based on the qualified name and binding type, returns an empty enumerable if no operation exists.
            </summary>
            <param name="qualifiedName">The qualified name of the operation.</param>
            <param name="bindingType">Type of the binding.</param>
            <returns>
            A set of operations that share the qualified name and binding type or empty enumerable if no such operation exists.
            </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindDeclaredTerm(System.String)">
            <summary>
            Searches for a term with the given name in this model and returns null if no such term exists.
            </summary>
            <param name="qualifiedName">The qualified name of the term being found.</param>
            <returns>The requested term, or null if no such term exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindDeclaredOperations(System.String)">
            <summary>
            Searches for operations with the given name in this model and returns an empty enumerable if no such operation exists.
            </summary>
            <param name="qualifiedName">The qualified name of the operation being found.</param>
            <returns>A set operations sharing the specified qualified name, or an empty enumerable if no such operation exists.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindOperationImportsByNameNonBindingParameterType(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Searches for any functionImport or actionImport by name and parameter names.
            </summary>
            <param name="operationImportName">The name of the operation imports to find. May be qualified with the namespace.</param>
            <param name="parameterNames">The parameter names of the parameters.</param>
            <returns>The operation imports that matches the search criteria or empty there was no match.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPrimitiveType(Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Gets primitive type by kind.
            </summary>
            <param name="kind">Kind of the primitive type.</param>
            <returns>Primitive type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPrimitiveType">
            <summary>
            Gets Edm.PrimitiveType type.
            </summary>
            <returns>IEdmPrimitiveType type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetComplexType">
            <summary>
            Gets Edm.ComplexType type.
            </summary>
            <returns>IEdmComplexType type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetEntityType">
            <summary>
            Gets Edm.EntityType type.
            </summary>
            <returns>IEdmEntityType type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetUntypedType">
            <summary>
            Gets Edm.Untyped type.
            </summary>
            <returns>IEdmUntypedType type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPathType(Microsoft.OData.Edm.EdmPathTypeKind)">
            <summary>
            Gets path type by kind.
            </summary>
            <param name="kind">Kind of the path type.</param>
            <returns>Path type definition.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPrimitiveTypeKind(System.String)">
            <summary>
            Gets the EdmPrimitiveTypeKind by the type name.
            </summary>
            <param name="typeName">Name of the type to look up.</param>
            <returns>EdmPrimitiveTypeKind of the type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPrimitive(Microsoft.OData.Edm.EdmPrimitiveTypeKind,System.Boolean)">
            <summary>
            Gets a reference to a primitive type of the specified kind.
            </summary>
            <param name="kind">Primitive kind of the type reference being created.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPathTypeKind(System.String)">
            <summary>
            Gets the EdmPathTypeKind by the type name.
            </summary>
            <param name="typeName">Name of the type to look up.</param>
            <returns>EdmPrimitiveTypeKind of the type.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPathType(Microsoft.OData.Edm.EdmPathTypeKind,System.Boolean)">
            <summary>
            Gets a reference to a path type of the specified kind.
            </summary>
            <param name="kind">Primitive kind of the type reference being created.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetAnnotationPath(System.Boolean)">
            <summary>
            Gets a reference to the Edm.AnnotationPath type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new Edm.AnnotationPath type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPropertyPath(System.Boolean)">
            <summary>
            Gets a reference to the Edm.PropertyPath type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new Edm.PropertyPath type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetNavigationPropertyPath(System.Boolean)">
            <summary>
            Gets a reference to the Edm.NavigationPropertyPath type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new Edm.NavigationPropertyPath type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetEntityType(System.Boolean)">
            <summary>
            Gets a reference to the Edm.EntityType type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new Edm.EntityType type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetComplexType(System.Boolean)">
            <summary>
            Gets a reference to the Edm.ComplexType type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new Edm.ComplexType type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetPrimitiveType(System.Boolean)">
            <summary>
            Gets a reference to the Edm.PrimitiveType type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new Edm.PrimitiveType type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetInt16(System.Boolean)">
            <summary>
            Gets a reference to the Int16 primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetInt32(System.Boolean)">
            <summary>
            Gets a reference to the Int32 primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetInt64(System.Boolean)">
            <summary>
            Gets a reference to the Int64 primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetBoolean(System.Boolean)">
            <summary>
            Gets a reference to the Boolean primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetByte(System.Boolean)">
            <summary>
            Gets a reference to the Byte primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetSByte(System.Boolean)">
            <summary>
            Gets a reference to the SByte primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetGuid(System.Boolean)">
            <summary>
            Gets a reference to the Guid primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetDate(System.Boolean)">
            <summary>
            Get a reference to the Date primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new primitive type reference</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetDateTimeOffset(System.Boolean)">
            <summary>
            Gets a reference to a datetime with offset primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new datetime with offset type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetDuration(System.Boolean)">
            <summary>
            Gets a reference to a duration primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new duration type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetTimeOfDay(System.Boolean)">
            <summary>
            Gets a reference to a TimeOfDay primitive type definition
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new TimeOfDay type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetDecimal(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Boolean)">
            <summary>
            Gets a reference to a decimal primitive type definition.
            </summary>
            <param name="precision">Precision of values of this type.</param>
            <param name="scale">Scale of values of this type.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new decimal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetDecimal(System.Boolean)">
            <summary>
            Gets a reference to a decimal primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new decimal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetSingle(System.Boolean)">
            <summary>
            Gets a reference to a single primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new decimal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetDouble(System.Boolean)">
            <summary>
            Gets a reference to a double primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new decimal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetStream(System.Boolean)">
            <summary>
            Gets a reference to a stream primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new stream type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetTemporal(Microsoft.OData.Edm.EdmPrimitiveTypeKind,System.Nullable{System.Int32},System.Boolean)">
            <summary>
            Gets a reference to a temporal primitive type definition.
            </summary>
            <param name="kind">Primitive kind of the type reference being created.</param>
            <param name="precision">Precision of values of this type.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new temporal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetTemporal(Microsoft.OData.Edm.EdmPrimitiveTypeKind,System.Boolean)">
            <summary>
            Gets a reference to a temporal primitive type definition.
            </summary>
            <param name="kind">Primitive kind of the type reference being created.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new temporal type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetBinary(System.Boolean,System.Nullable{System.Int32},System.Boolean)">
            <summary>
            Gets a reference to a binary primitive type definition.
            </summary>
            <param name="isUnbounded">Flag specifying if max length is unbounded.</param>
            <param name="maxLength">Maximum length of the type.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new binary type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetBinary(System.Boolean)">
            <summary>
            Gets a reference to a binary primitive type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new binary type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetSpatial(Microsoft.OData.Edm.EdmPrimitiveTypeKind,System.Nullable{System.Int32},System.Boolean)">
            <summary>
            Gets a reference to a spatial primitive type definition.
            </summary>
            <param name="kind">Primitive kind of the type reference being created.</param>
            <param name="spatialReferenceIdentifier">Spatial Reference Identifier for the spatial type being created.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new spatial type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetSpatial(Microsoft.OData.Edm.EdmPrimitiveTypeKind,System.Boolean)">
            <summary>
            Gets a reference to a spatial primitive type definition.
            </summary>
            <param name="kind">Primitive kind of the type reference being created.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new spatial type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetString(System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Boolean)">
            <summary>
            Gets a reference to a string primitive type definition.
            </summary>
            <param name="isUnbounded">Flag specifying if max length is the maximum allowable value.</param>
            <param name="maxLength">Maximum length of the type.</param>
            <param name="isUnicode">Flag specifying if the type should support unicode encoding.</param>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new string type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetString(System.Boolean)">
            <summary>
            Gets a reference to a binary string type definition.
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new string type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetUntyped">
            <summary>
            Gets a reference to a Edm.Untyped type definition.
            </summary>
            <returns>A new Edm.Untyped type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.GetUntyped(System.Boolean)">
            <summary>
            Gets a reference to a Edm.Untyped type definition
            </summary>
            <param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
            <returns>A new Edm.Untyped type reference.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindDeclaredVocabularyAnnotations(Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable)">
            <summary>
            Searches for vocabulary annotations specified by this model or a referenced model for a given element.
            </summary>
            <param name="element">The annotated element.</param>
            <returns>The vocabulary annotations for the element.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModel.FindDirectlyDerivedTypes(Microsoft.OData.Edm.IEdmStructuredType)">
            <summary>
            Finds a list of types that derive from the supplied type.
            </summary>
            <param name="baseType">The base type that derived types are being searched for.</param>
            <returns>A list of types that derive from the type.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCoreModelComplexType">
            <summary>
            The built-in Edm.ComplexType abstract type in the core model.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmCoreModelComplexType.Instance">
            <summary>
            The core Edm.ComplexType singleton.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmCoreModelComplexType.BaseType">
            <summary>
            Gets the base type of this type.
            The Edm.ComplexType is always without base type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModelComplexType.#ctor">
            <summary>
            private constructor.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.SchemaElementKind">
            <summary>
            Gets the schema element kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.Name">
            <summary>
            Gets the name of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.Namespace">
            <summary>
            Gets the namespace of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.FullName">
            <summary>
            Gets the full name of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.IsAbstract">
            <summary>
            Gets a value indicating whether this type is abstract.
            The Edm.ComplexType is always an abstract type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.IsOpen">
            <summary>
            Gets a value indicating whether this type is open.
            The Edm.ComplexType is always non-open type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.DeclaredProperties">
            <summary>
            Gets the properties declared immediately within this type.
            The Edm.ComplexType is always without any declared properties.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelComplexType.Microsoft#OData#Edm#IEdmStructuredType#BaseType">
            <summary>
            Gets the base structured type of this type.
            The Edm.ComplexType is always without base type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModelComplexType.FindProperty(System.String)">
            <summary>
            Searches for a structural or navigation property with the given name in this type.
            </summary>
            <param name="name">The name of the property being found.</param>
            <returns>The Edm.ComplexType is always without any declared properties.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCoreModelEntityType">
            <summary>
            The built-in Edm.EntityType abstract type in the core model.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmCoreModelEntityType.Instance">
            <summary>
            The core Edm.EntityType singleton.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModelEntityType.#ctor">
            <summary>
            Private constructor.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.SchemaElementKind">
            <summary>
            Gets the schema element kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.Name">
            <summary>
            Gets the name of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.Namespace">
            <summary>
            Gets the namespace of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.FullName">
            <summary>
            Gets the full name of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.HasStream">
            <summary>
            Gets the value indicating whether or not this type is a media entity.
            The Edm.EntityType has not stream.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.IsAbstract">
            <summary>
            Gets a value indicating whether this type is abstract.
            The Edm.EntityType is always an abstract type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.IsOpen">
            <summary>
            Gets a value indicating whether this type is open.
            The Edm.EntityType is always non-open type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.BaseType">
            <summary>
            Gets the base type of this type.
            The Edm.EntityType is always without base type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.DeclaredProperties">
            <summary>
            Gets the properties declared immediately within this type.
            The Edm.EntityType is always without any declared properties.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelEntityType.DeclaredKey">
            <summary>
            Gets the structural properties of the entity type that make up the entity key.
            The Edm.EntityType is always without any declared keys.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModelEntityType.FindProperty(System.String)">
            <summary>
            Searches for a structural or navigation property with the given name in this type.
            </summary>
            <param name="name">The name of the property being found.</param>
            <returns>The Edm.EntityType is always without any declared properties.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCoreModelPathType">
            <summary>
            The built-in Edm.AnnotationPath, Edm.PropertyPath, Edm.NavigationPropertyPath abstract type in the core model.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModelPathType.#ctor(Microsoft.OData.Edm.EdmPathTypeKind)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmCoreModelPathType"/> class.
            </summary>
            <param name="pathKind">The path kind.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPathType.PathKind">
            <summary>
            Gets the path kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPathType.FullName">
            <summary>
            Gets the full name of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPathType.TypeKind">
            <summary>
            Gets the Edm type kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPathType.SchemaElementKind">
            <summary>
            Gets the schema element kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPathType.Namespace">
            <summary>
            Gets the namespace of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPathType.Name">
            <summary>
            Gets the name of this type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCoreModelPrimitiveType">
            <summary>
            The built-in Edm.PrimitiveType and other concrete primitive types in the core model.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModelPrimitiveType.#ctor(Microsoft.OData.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmCoreModelPrimitiveType"/> class.
            </summary>
            <param name="primitiveKind">The primitive type kind.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPrimitiveType.Name">
            <summary>
            Gets the name of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPrimitiveType.Namespace">
            <summary>
            Gets the namespace of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPrimitiveType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPrimitiveType.PrimitiveKind">
            <summary>
            Gets the primitive kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPrimitiveType.SchemaElementKind">
            <summary>
            Gets the schema element kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelPrimitiveType.FullName">
            <summary>
            Gets the full name of this type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCoreModelUntypedType">
            <summary>
            The built-in Edm.Untyped type in the core model.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmCoreModelUntypedType.Instance">
            <summary>
            The core Edm.Untyped singleton.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCoreModelUntypedType.#ctor">
            <summary>
            Private constructor.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelUntypedType.TypeKind">
            <summary>
            Gets the Edm type kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelUntypedType.SchemaElementKind">
            <summary>
            Gets the scheme element type kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelUntypedType.Name">
            <summary>
            Gets the name of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelUntypedType.Namespace">
            <summary>
            Gets the namespace of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCoreModelUntypedType.FullName">
            <summary>
            Gets the full name of this type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.IEdmCoreModelElement">
            <summary>
            This is a marker interface for core model elements that do not require validation.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.CyclicComplexType">
            <summary>
            Represents an EDM complex type that cannot be determined due to a cyclic reference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.CyclicEntityContainer">
            <summary>
            Represents an EDM entity container that cannot be determined due to a cyclic reference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.CyclicEntityType">
            <summary>
            Represents an EDM entity type that cannot be determined due to a cyclic reference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.Date">
            <summary>
            Date type for Edm.Date
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Date.MinValue">
            <summary>
            Min value of <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Date.MaxValue">
            <summary>
            Max value of <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.Date.dateTime">
            <summary>
            Internal using System.DateTime
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.#ctor(System.Int32,System.Int32,System.Int32)">
            <summary>
            Constructor of <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
            <param name="year">Year value of date</param>
            <param name="month">Month value of date</param>
            <param name="day">Day value of date</param>
        </member>
        <member name="P:Microsoft.OData.Edm.Date.Now">
            <summary>
            Gets a <see cref="T:Microsoft.OData.Edm.Date"/> object that is set to current date on this computer, expressed as the local time.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Date.Year">
            <summary>
            Gets the year component of the date represented by this instance.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Date.Month">
            <summary>
            Gets the month component of the date represented by this instance.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.Date.Day">
            <summary>
            Gets the day of the month represented by this instance.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_Equality(Microsoft.OData.Edm.Date,Microsoft.OData.Edm.Date)">
            <summary>
            Determines whether two specified instances of <see cref="T:Microsoft.OData.Edm.Date"/> are equal.
            </summary>
            <param name="firstOperand">The first object to compare.</param>
            <param name="secondOperand">The second object to compare.</param>
            <returns>true if firstOperand and secondOperand represent the same date; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_Inequality(Microsoft.OData.Edm.Date,Microsoft.OData.Edm.Date)">
            <summary>
            Determines whether two specified instances of <see cref="T:Microsoft.OData.Edm.Date"/> are not equal.
            </summary>
            <param name="firstOperand">The first object to compare.</param>
            <param name="secondOperand">The second object to compare.</param>
            <returns>true if firstOperand and secondOperand do not represent the same date; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_LessThan(Microsoft.OData.Edm.Date,Microsoft.OData.Edm.Date)">
            <summary>
            Determines whether one specified <see cref="T:Microsoft.OData.Edm.Date"/> is less than
            another specified <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
            <param name="firstOperand">The first object to compare.</param>
            <param name="secondOperand">The second object to compare.</param>
            <returns>true if firstOperand is less than secondOperand; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_LessThanOrEqual(Microsoft.OData.Edm.Date,Microsoft.OData.Edm.Date)">
            <summary>
            Determines whether one specified <see cref="T:Microsoft.OData.Edm.Date"/> is less equal to
            another specified <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
            <param name="firstOperand">The first object to compare.</param>
            <param name="secondOperand">The second object to compare.</param>
            <returns>true if firstOperand is less equal to secondOperand; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_GreaterThan(Microsoft.OData.Edm.Date,Microsoft.OData.Edm.Date)">
            <summary>
            Determines whether one specified <see cref="T:Microsoft.OData.Edm.Date"/> is greater than
            another specified <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
            <param name="firstOperand">The first object to compare.</param>
            <param name="secondOperand">The second object to compare.</param>
            <returns>true if firstOperand is greater than secondOperand; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_GreaterThanOrEqual(Microsoft.OData.Edm.Date,Microsoft.OData.Edm.Date)">
            <summary>
            Determines whether one specified <see cref="T:Microsoft.OData.Edm.Date"/> is greater equal to
            another specified <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
            <param name="firstOperand">The first object to compare.</param>
            <param name="secondOperand">The second object to compare.</param>
            <returns>true if firstOperand is greater equal to secondOperand; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.AddYears(System.Int32)">
            <summary>
            Returns a new Date that adds the specified number of years to the value of this instance.
            </summary>
            <param name="value">A number of years. The value parameter can be negative or positive.</param>
            <returns>An object whose value is the sum of the date and time represented by this instance and the number of years represented by value</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.AddMonths(System.Int32)">
            <summary>
            Returns a new Date that adds the specified number of months to the value of this instance.
            </summary>
            <param name="value">A number of months. The value parameter can be negative or positive.</param>
            <returns>An object whose value is the sum of the date and time represented by this instance and the number of months represented by value</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.AddDays(System.Int32)">
            <summary>
            Returns a new Date that adds the specified number of days to the value of this instance.
            </summary>
            <param name="value">A number of days. The value parameter can be negative or positive.</param>
            <returns>An object whose value is the sum of the date and time represented by this instance and the number of days represented by value</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_Implicit(Microsoft.OData.Edm.Date)~System.DateTime">
            <summary>
            Convert Date to Clr DateTime
            </summary>
            <param name="operand">Date Value</param>
            <returns>DateTime Value which represent the Date</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.op_Implicit(System.DateTime)~Microsoft.OData.Edm.Date">
            <summary>
            Convert Clr DateTime to Date
            </summary>
            <param name="operand">DateTime Value</param>
            <returns>Date Value from DateTime</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.ToString">
            <summary>
            Convert Date to String
            </summary>
            <returns>string value of Date</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.CompareTo(System.Object)">
            <summary>
            Compares the value of this instance to a object value
            and returns an integer that indicates whether this instance is earlier than,
            the same as, or later than the object if it is a Date.
            </summary>
            <param name="obj">The object to compare to the current instance</param>
            <returns>Value Description Less than zero This instance is earlier than value.
            Zero This instance is the same as value.
            Greater than zero This instance is later than value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.CompareTo(Microsoft.OData.Edm.Date)">
            <summary>
            Compares the value of this instance to a specified Date value
            and returns an integer that indicates whether this instance is earlier than,
            the same as, or later than the specified Date value.
            </summary>
            <param name="other">The object to compare to the current instance</param>
            <returns>Value Description Less than zero This instance is earlier than value.
            Zero This instance is the same as value.
            Greater than zero This instance is later than value.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.Equals(Microsoft.OData.Edm.Date)">
            <summary>
            Compares the value of this instance to a specified Date value
            and returns an bool that indicates whether this instance is same as the specified Date value.
            </summary>
            <param name="other">The object to compare to the current instance</param>
            <returns>True for equal, false for non-equal.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.Equals(System.Object)">
            <summary>
            Compares the value of this instance to a specified object value
            and returns an bool that indicates whether the specified object is <see cref="T:Microsoft.OData.Edm.Date"/>
            and this instance is same as the specified <see cref="T:Microsoft.OData.Edm.Date"/> value.
            </summary>
            <param name="obj">The object to compare to the current instance</param>
            <returns>True for equal, false for non-equal.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.GetHashCode">
            <summary>
            Returns the hash code for this instance.
            </summary>
            <returns>A 32-bit signed integer hash code.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.Parse(System.String)">
            <summary>
            Converts a specified string representation of a date to <see cref="T:Microsoft.OData.Edm.Date"/> with CurrentCulture format.
            </summary>
            <param name="text">A string that represent a date to convert.</param>
            <returns>The <see cref="T:Microsoft.OData.Edm.Date"/> instance represented by text </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.Parse(System.String,System.IFormatProvider)">
            <summary>
            Converts a specified string representation of a date to <see cref="T:Microsoft.OData.Edm.Date"/>.
            </summary>
            <param name="text">A string that represent a date to convert.</param>
            <param name="provider">An object that supplies culture-specific formatting information about text.</param>
            <returns>The <see cref="T:Microsoft.OData.Edm.Date"/> instance represented by text </returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.TryParse(System.String,Microsoft.OData.Edm.Date@)">
            <summary>
            Try converts a specified string representation of a date to <see cref="T:Microsoft.OData.Edm.Date"/> with CurrentCulture format.
            </summary>
            <param name="text">A string that represent a date to convert.</param>
            <param name="result">A <see cref="T:Microsoft.OData.Edm.Date"/> object equivalent to the date input, if the conversion succeeded
            or <see cref="F:Microsoft.OData.Edm.Date.MinValue"/>, if the conversion failed.</param>
            <returns>True if the input parameter is successfully converted; otherwise, false.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.Date.TryParse(System.String,System.IFormatProvider,Microsoft.OData.Edm.Date@)">
            <summary>
            Try converts a specified string representation of a date to <see cref="T:Microsoft.OData.Edm.Date"/>
            </summary>
            <param name="text">A string that represent a date to convert.</param>
            <param name="provider">An object that supplies culture-specific formatting information about text.</param>
            <param name="result">A <see cref="T:Microsoft.OData.Edm.Date"/> object equivalent to the date input, if the conversion succeeded
            or <see cref="F:Microsoft.OData.Edm.Date.MinValue"/>, if the conversion failed.</param>
            <returns>True if the input parameter is successfully converted; otherwise, false.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmAction">
            <summary>
            Represents an EDM action.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmAction.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmTypeReference,System.Boolean,Microsoft.OData.Edm.IEdmPathExpression)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmAction"/> class.
            </summary>
            <param name="namespaceName">Name of the namespace.</param>
            <param name="name">The name.</param>
            <param name="returnType">Type of the return.</param>
            <param name="isBound">if set to <c>true</c> [is bound].</param>
            <param name="entitySetPathExpression">The entity set path expression.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmAction.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmAction"/> class.
            </summary>
            <param name="namespaceName">Name of the namespace.</param>
            <param name="name">The name.</param>
            <param name="returnType">Type of the return.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmAction.SchemaElementKind">
            <summary>
            Gets the element kind of this schema element kind which is an Action.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmActionImport">
            <summary>
            Represents an EDM action import.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmActionImport.#ctor(Microsoft.OData.Edm.IEdmEntityContainer,System.String,Microsoft.OData.Edm.IEdmAction)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmActionImport"/> class.
            </summary>
            <param name="container">The container.</param>
            <param name="name">The name.</param>
            <param name="action">The action.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmActionImport.#ctor(Microsoft.OData.Edm.IEdmEntityContainer,System.String,Microsoft.OData.Edm.IEdmAction,Microsoft.OData.Edm.IEdmExpression)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmActionImport"/> class.
            </summary>
            <param name="container">The container.</param>
            <param name="name">The name.</param>
            <param name="action">The action.</param>
            <param name="entitySetExpression">The entity set expression.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmActionImport.Action">
            <summary>
            Gets the action type of the import.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmActionImport.ContainerElementKind">
            <summary>
            Gets the kind of this actionimport, which is always ActionImport.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmActionImport.OperationArgumentNullParameterName">
            <summary>
            Indicates the name of the constructor argument that is passed to EdmOperationImport.
            </summary>
            <returns>Returns the name of the operation from this import.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmBinaryTypeReference">
            <summary>
            Represents a reference to an EDM binary type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmBinaryTypeReference.#ctor(Microsoft.OData.Edm.IEdmPrimitiveType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmBinaryTypeReference"/> class.
            </summary>
            <param name="definition">The type this reference refers to.</param>
            <param name="isNullable">Denotes whether the type can be nullable.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmBinaryTypeReference.#ctor(Microsoft.OData.Edm.IEdmPrimitiveType,System.Boolean,System.Boolean,System.Nullable{System.Int32})">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmBinaryTypeReference"/> class.
            </summary>
            <param name="definition">The type this reference refers to.</param>
            <param name="isNullable">Denotes whether the type can be nullable.</param>
            <param name="isUnbounded">Denotes whether the max length is the maximum allowed value.</param>
            <param name="maxLength">Maximum length of a value of this type.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmBinaryTypeReference.IsUnbounded">
            <summary>
            Gets a value indicating whether this type specifies the maximum allowed length.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmBinaryTypeReference.MaxLength">
            <summary>
            Gets the maximum length of this type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCollectionType">
            <summary>
            Represents a definition of an EDM collection type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCollectionType.#ctor(Microsoft.OData.Edm.IEdmTypeReference)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmCollectionType"/> class.
            </summary>
            <param name="elementType">The type of the elements in this collection.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCollectionType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmCollectionType.ElementType">
            <summary>
            Gets the element type of this collection type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmCollectionTypeReference">
            <summary>
            Represents a reference to an EDM collection type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmCollectionTypeReference.#ctor(Microsoft.OData.Edm.IEdmCollectionType)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmCollectionTypeReference"/> class.
            </summary>
            <param name="collectionType">The type definition this reference refers to.</param>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmComplexType">
            <summary>
            Represents a definition of an EDM complex type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmComplexType.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmComplexType"/> class.
            </summary>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmComplexType.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmComplexType)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmComplexType"/> class.
            </summary>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
            <param name="baseType">The base type of this complex type.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmComplexType.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmComplexType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmComplexType"/> class.
            </summary>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
            <param name="baseType">The base type of this complex type.</param>
            <param name="isAbstract">Denotes whether this complex type is abstract.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmComplexType.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmComplexType,System.Boolean,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmComplexType"/> class.
            </summary>
            <param name="namespaceName">The namespace this type belongs to.</param>
            <param name="name">The name of this type within its namespace.</param>
            <param name="baseType">The base type of this complex type.</param>
            <param name="isAbstract">Denotes whether this complex type is abstract.</param>
            <param name="isOpen">Denotes if the type is open.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmComplexType.SchemaElementKind">
            <summary>
            Gets the schema element kind of this element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmComplexType.Namespace">
            <summary>
            Gets the namespace of this element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmComplexType.Name">
            <summary>
            Gets the name of this element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmComplexType.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmComplexType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmComplexTypeReference">
            <summary>
            Represents a reference to an EDM complex type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmComplexTypeReference.#ctor(Microsoft.OData.Edm.IEdmComplexType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmComplexTypeReference"/> class.
            </summary>
            <param name="complexType">The type definition this reference refers to.</param>
            <param name="isNullable">Denotes whether the type can be nullable.</param>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmConstants">
            <summary>
            Contains constant values that apply to the EDM model, regardless of source (for CSDL/EDMX specific constants see <see cref="T:Microsoft.OData.Edm.Csdl.CsdlConstants"/>).
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmConstants.EdmVersion4">
            <summary>
            Version 4.0 of EDM, defined in CSDL namespace "http://docs.oasis-open.org/odata/ns/edmx".
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmConstants.EdmVersion401">
            <summary>
            Version 4.01 of EDM, defined in CSDL namespace "http://docs.oasis-open.org/odata/ns/edmx".
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmConstants.EdmVersionLatest">
            <summary>
            The current latest version of EDM.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmConstants.EdmVersionDefault">
            <summary>
            The default version of EDM to use if none is specified.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmConstants.InternalUri">
            <summary>
            The URI of annotations that are internal and will not be serialized.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmConstants.EdmVersionAnnotation">
            <summary>
            The local name of the annotation that stores EDM version of a model.
            </summary>
        </member>
        <member name="F:Microsoft.OData.Edm.EdmConstants.MimeTypeAttributeName">
            <summary>The attribute name used on service operations and primitive properties to indicate their MIME type.</summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmContainedEntitySet">
            <summary>
            Represents an EDM contained entity set.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmContainedEntitySet.#ctor(Microsoft.OData.Edm.IEdmNavigationSource,Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmContainedEntitySet"/> class.
            </summary>
            <param name="parentNavigationSource">The <see cref="T:Microsoft.OData.Edm.IEdmNavigationSource"/> that container element belongs to</param>
            <param name="navigationProperty">An <see cref="T:Microsoft.OData.Edm.IEdmNavigationProperty"/> containing the navigation property definition of the contained element</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmContainedEntitySet.#ctor(Microsoft.OData.Edm.IEdmNavigationSource,Microsoft.OData.Edm.IEdmNavigationProperty,Microsoft.OData.Edm.IEdmPathExpression)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmContainedEntitySet"/> class.
            </summary>
            <param name="parentNavigationSource">The <see cref="T:Microsoft.OData.Edm.IEdmNavigationSource"/> that container element belongs to</param>
            <param name="navigationProperty">An <see cref="T:Microsoft.OData.Edm.IEdmNavigationProperty"/> containing the navigation property definition of the contained element</param>
            <param name="navigationPath">The path from the parentNavigationSource to the related resource, concluding with the navigation property name. May traverse complex types and cast segments</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmContainedEntitySet.Path">
            <summary>
            Gets the path that a navigation property targets. This property is not thread safe.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmContainedEntitySet.ParentNavigationSource">
            <summary>The parent navigation source of this contained entity set.</summary>
            <returns>The parent navigation source of this contained entity set.</returns>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmContainedEntitySet.NavigationProperty">
            <summary>The navigation property of this contained entity set.</summary>
            <returns>The navigation property of this contained entity set.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmContainedEntitySet.FindNavigationPropertyBindings(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Finds the bindings of the navigation property.
            </summary>
            <param name="navigationProperty">The navigation property.</param>
            <returns>The list of bindings for current navigation property.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmContainedEntitySet.FindNavigationTarget(Microsoft.OData.Edm.IEdmNavigationProperty)">
            <summary>
            Finds the entity set that a navigation property targets.
            </summary>
            <param name="navigationProperty">The navigation property.</param>
            <returns>The entity set that the navigation property targets</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmContainedEntitySet.FindNavigationTarget(Microsoft.OData.Edm.IEdmNavigationProperty,Microsoft.OData.Edm.IEdmPathExpression)">
            <summary>
            Finds the entity set that a navigation property targets.
            </summary>
            <param name="navigationProperty">The navigation property.</param>
            <param name="bindingPath">The binding path of the navigation property</param>
            <returns>The entity set that the navigation property targets</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmDecimalTypeReference">
            <summary>
            Represents a reference to an EDM decimal type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmDecimalTypeReference.#ctor(Microsoft.OData.Edm.IEdmPrimitiveType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmDecimalTypeReference"/> class.
            </summary>
            <param name="definition">The type this reference refers to.</param>
            <param name="isNullable">Denotes whether the type can be nullable.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmDecimalTypeReference.#ctor(Microsoft.OData.Edm.IEdmPrimitiveType,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmDecimalTypeReference"/> class.
            </summary>
            <param name="definition">The type this reference refers to.</param>
            <param name="isNullable">Denotes whether the type can be nullable.</param>
            <param name="precision">Precision of values with this type.</param>
            <param name="scale">Scale of values with this type.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmDecimalTypeReference.Precision">
            <summary>
            Gets the precision of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmDecimalTypeReference.Scale">
            <summary>
            Gets the scale of this type.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmElement">
            <summary>
            Common base class for all EDM elements.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEntityContainer">
            <summary>
            Represents an EDM entity container.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityContainer"/> class.
            </summary>
            <param name="namespaceName">Namespace of the entity container.</param>
            <param name="name">Name of the entity container.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityContainer.Elements">
            <summary>
            Gets a collection of the elements of this entity container.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityContainer.Namespace">
            <summary>
            Gets the namespace of this entity container.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityContainer.Name">
            <summary>
            Gets the name of this entity container.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityContainer.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityContainer.SchemaElementKind">
            <summary>
            Gets the kind of this schema element.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddElement(Microsoft.OData.Edm.IEdmEntityContainerElement)">
            <summary>
            Adds an entity container element to this entity container.
            </summary>
            <param name="element">The element to add.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddEntitySet(System.String,Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Creates and adds an entity set to this entity container.
            </summary>
            <param name="name">Name of the entity set.</param>
            <param name="elementType">The entity type of the elements in this entity set.</param>
            <returns>Created entity set.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddEntitySet(System.String,Microsoft.OData.Edm.IEdmEntityType,System.Boolean)">
            <summary>
            Creates and adds an entity set to this entity container.
            </summary>
            <param name="name">Name of the entity set.</param>
            <param name="elementType">The entity type of the elements in this entity set.</param>
            <param name="includeInServiceDocument">Indicates whether the entity set is advertised in the service document.</param>
            <returns>Created entity set.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddSingleton(System.String,Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Creates and adds an singleton to this entity container.
            </summary>
            <param name="name">Name of the singleton.</param>
            <param name="entityType">The entity type of this singleton.</param>
            <returns>Created singleton.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddFunctionImport(Microsoft.OData.Edm.IEdmFunction)">
            <summary>
            Creates and adds a function import to this entity container.
            </summary>
            <param name="function">The function of the specified function import.</param>
            <returns>Created function import.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddFunctionImport(System.String,Microsoft.OData.Edm.IEdmFunction)">
            <summary>
            Creates and adds a function import to this entity container.
            </summary>
            <param name="name">Name of the function import.</param>
            <param name="function">The function of the specified function import.</param>
            <returns>Created function import.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddFunctionImport(System.String,Microsoft.OData.Edm.IEdmFunction,Microsoft.OData.Edm.IEdmExpression)">
            <summary>
            Creates and adds a function import to this entity container.
            </summary>
            <param name="name">Name of the function import.</param>
            <param name="function">The function of the specified function import.</param>
            <param name="entitySet">An entity set containing entities returned by this function import.
            The expression kind supported is <see cref="T:Microsoft.OData.Edm.IEdmPathExpression"/>.</param>
            <returns>Created function import.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddFunctionImport(System.String,Microsoft.OData.Edm.IEdmFunction,Microsoft.OData.Edm.IEdmExpression,System.Boolean)">
            <summary>
            Creates and adds a function import to this entity container.
            </summary>
            <param name="name">Name of the function import.</param>
            <param name="function">The function of the specified function import.</param>
            <param name="entitySet">An entity set containing entities returned by this function import.
            The expression kind supported is <see cref="T:Microsoft.OData.Edm.IEdmPathExpression"/>.</param>
            <param name="includeInServiceDocument">A value indicating whether this function import will be in the service document.</param>
            <returns>Created operation import.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddActionImport(System.String,Microsoft.OData.Edm.IEdmAction,Microsoft.OData.Edm.IEdmExpression)">
            <summary>
            Creates and adds an action import to this entity container.
            </summary>
            <param name="name">Name of the action import.</param>
            <param name="action">Action that the action import is importing to the container.</param>
            <param name="entitySet">An entity set containing entities returned by this action import.
            The expression kind supported is <see cref="T:Microsoft.OData.Edm.IEdmPathExpression"/>.</param>
            <returns>Created action import.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddActionImport(Microsoft.OData.Edm.IEdmAction)">
            <summary>
            Creates and adds an action import to this entity container.
            </summary>
            <param name="action">Action that the action import is importing to the container.</param>
            <returns>Created action import.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.AddActionImport(System.String,Microsoft.OData.Edm.IEdmAction)">
            <summary>
            Creates and adds an action import to this entity container.
            </summary>
            <param name="name">Name of the action import.</param>
            <param name="action">Action that the action import is importing to the container.</param>
            <returns>Created action import.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.FindEntitySet(System.String)">
            <summary>
            Searches for an entity set with the given name in this entity container and returns null if no such set exists.
            </summary>
            <param name="setName">The name of the element being found.</param>
            <returns>The requested element, or null if the element does not exist.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.FindSingleton(System.String)">
            <summary>
            Searches for a singleton with the given name in this entity container and returns null if no such singleton exists.
            </summary>
            <param name="singletonName">The name of the singleton to search.</param>
            <returns>The requested singleton, or null if the singleton does not exist.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityContainer.FindOperationImports(System.String)">
            <summary>
            Searches for operation imports with the given name in this entity container and returns null if no such operation import exists.
            </summary>
            <param name="operationName">The name of the operation to find.</param>
            <returns>A group of the requested operation imports, or an empty enumerable if no such operation import exists.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEntityReferenceType">
            <summary>
            Represents a definition of an EDM entity reference type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityReferenceType.#ctor(Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityReferenceType"/> class.
            </summary>
            <param name="entityType">The entity referred to by this entity reference.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityReferenceType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityReferenceType.EntityType">
            <summary>
            Gets the entity type pointed to by this entity reference.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEntityReferenceTypeReference">
            <summary>
            Represents a reference to an EDM entity reference type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityReferenceTypeReference.#ctor(Microsoft.OData.Edm.IEdmEntityReferenceType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityReferenceTypeReference"/> class.
            </summary>
            <param name="entityReferenceType">The definition referred to by this reference.</param>
            <param name="isNullable">Denotes whether the type can be nullable.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityReferenceTypeReference.EntityReferenceDefinition">
            <summary>
            Gets the entity reference definition to which this type refers.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEntitySet">
            <summary>
            Represents an EDM entity set.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntitySet.#ctor(Microsoft.OData.Edm.IEdmEntityContainer,System.String,Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntitySet"/> class.
            </summary>
            <param name="container">An <see cref="T:Microsoft.OData.Edm.IEdmEntityContainer"/> containing this entity set.</param>
            <param name="name">Name of the entity set.</param>
            <param name="elementType">The entity type of the elements in this entity set.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntitySet.#ctor(Microsoft.OData.Edm.IEdmEntityContainer,System.String,Microsoft.OData.Edm.IEdmEntityType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntitySet"/> class.
            </summary>
            <param name="container">An <see cref="T:Microsoft.OData.Edm.IEdmEntityContainer"/> containing this entity set.</param>
            <param name="name">Name of the entity set.</param>
            <param name="elementType">The entity type of the elements in this entity set.</param>
            <param name="includeInServiceDocument">Indicates whether the entity set is advertised in the service document.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntitySet.ContainerElementKind">
            <summary>
            Gets the kind of element of this container element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntitySet.Container">
            <summary>
            Gets the container of this entity set.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntitySet.Type">
            <summary>
            Gets the type of this entity set.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntitySet.Path">
            <summary>
            Gets the path that a navigation property targets.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntitySet.IncludeInServiceDocument">
            <summary>
            Gets a value indicating whether the entity set is included in the service document.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEntitySetBase">
            <summary>
            Represents an abstract EDM entity set base.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntitySetBase.#ctor(System.String,Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntitySetBase"/> class.
            </summary>
            <param name="name">Name of the entity set base.</param>
            <param name="elementType">The entity type of the elements in this entity set base.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntitySetBase.Type">
            <summary>
            Gets the type of this navigation source.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEntityType">
            <summary>
            Represents a definition of an EDM entity type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityType"/> class.
            </summary>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmEntityType)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityType"/> class.
            </summary>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmEntityType,System.Boolean,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityType"/> class.
            </summary>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
            <param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
            <param name="isOpen">Denotes if the type is open.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmEntityType,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityType"/> class.
            </summary>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
            <param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
            <param name="isOpen">Denotes if the type is open.</param>
            <param name="hasStream">Denotes if the type is a media type.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityType.DeclaredKey">
            <summary>
            Gets the structural properties of the entity type that make up the entity key.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityType.SchemaElementKind">
            <summary>
            Gets the kind of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityType.Namespace">
            <summary>
            Gets the namespace this schema element belongs to.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityType.Name">
            <summary>
            Gets the name of this element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityType.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEntityType.HasStream">
            <summary>
            Gets the value indicating whether or not this entity is a media type
            This value inherits from the base type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.AddKeys(Microsoft.OData.Edm.IEdmStructuralProperty[])">
            <summary>
            Adds the <paramref name="keyProperties"/> to the key of this entity type.
            </summary>
            <param name="keyProperties">The key properties.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.AddKeys(System.Collections.Generic.IEnumerable{Microsoft.OData.Edm.IEdmStructuralProperty})">
            <summary>
            Adds the <paramref name="keyProperties"/> to the key of this entity type.
            </summary>
            <param name="keyProperties">The key properties.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.AddBidirectionalNavigation(Microsoft.OData.Edm.EdmNavigationPropertyInfo,Microsoft.OData.Edm.EdmNavigationPropertyInfo)">
            <summary>
            Creates and adds a navigation property to this type and adds its navigation partner to the navigation target type.
            </summary>
            <param name="propertyInfo">Information to create the navigation property.</param>
            <param name="partnerInfo">Information to create the partner navigation property.</param>
            <returns>Created navigation property.</returns>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.SetNavigationPropertyPartner(Microsoft.OData.Edm.EdmNavigationProperty,Microsoft.OData.Edm.IEdmPathExpression,Microsoft.OData.Edm.EdmNavigationProperty,Microsoft.OData.Edm.IEdmPathExpression)">
            <summary>
            Sets partner information of a top-level navigation property.
            </summary>
            <param name="navigationProperty">Navigation property of the entity type.</param>
            <param name="navigationPropertyPath">Path to the navigation property of the entity type.</param>
            <param name="partnerNavigationProperty">Partner navigation property.</param>
            <param name="partnerNavigationPropertyPath">Path to the partner navigation property
            from the related entity type.</param>
            <remarks>
            If partnerNavigationProperty is declared on an entity type, its partner will be set accordingly; there is no
            need to call this method twice, once on each side.
            </remarks>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityType.FixUpDefaultPartnerInfo(Microsoft.OData.Edm.EdmNavigationPropertyInfo,Microsoft.OData.Edm.EdmNavigationPropertyInfo)">
            <summary>
            The purpose of this method is to make sure that some of the <paramref name="partnerInfo"/> fields are set to valid partner defaults.
            For example if <paramref name="partnerInfo"/>.Target is null, it will be set to this entity type. If <paramref name="partnerInfo"/>.TargetMultiplicity
            is unknown, it will be set to 0..1, etc.
            Whenever this method applies new values to <paramref name="partnerInfo"/>, it will return a copy of it (thus won't modify the original).
            If <paramref name="partnerInfo"/> is null, a new info object will be produced.
            </summary>
            <param name="propertyInfo">Primary navigation property info.</param>
            <param name="partnerInfo">Partner navigation property info. May be null.</param>
            <returns>Partner info.</returns>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEntityTypeReference">
            <summary>
            Represents a reference to an EDM entity type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEntityTypeReference.#ctor(Microsoft.OData.Edm.IEdmEntityType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEntityTypeReference"/> class.
            </summary>
            <param name="entityType">The definition referred to by this reference.</param>
            <param name="isNullable">Denotes whether the type can be nullable.</param>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEnumMember">
            <summary>
            Represents a member of an EDM enumeration type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEnumMember.#ctor(Microsoft.OData.Edm.IEdmEnumType,System.String,Microsoft.OData.Edm.IEdmEnumMemberValue)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEnumMember"/> class.
            </summary>
            <param name="declaringType">The type that declares this member.</param>
            <param name="name">Name of this enumeration member.</param>
            <param name="value">Value of this enumeration member.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumMember.DeclaringType">
            <summary>
            Gets the type that this member belongs to.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumMember.Value">
            <summary>
            Gets the value of this enumeration type member.
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEnumMemberValue">
            <summary>
            The edm enum member value.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEnumMemberValue.#ctor(System.Int64)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEnumMemberValue"/> class.
            </summary>
            <param name="value">The value of enum member</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumMemberValue.Value">
            <summary>
            Gets the value of enum member
            </summary>
        </member>
        <member name="T:Microsoft.OData.Edm.EdmEnumType">
            <summary>
            Represents the definition of an Edm enumeration type.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEnumType.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEnumType"/> class with <see cref="F:Microsoft.OData.Edm.EdmPrimitiveTypeKind.Int32"/> underlying type.
            </summary>
            <param name="namespaceName">Namespace this enumeration type belongs to.</param>
            <param name="name">Name of this enumeration type.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEnumType.#ctor(System.String,System.String,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEnumType"/> class with <see cref="F:Microsoft.OData.Edm.EdmPrimitiveTypeKind.Int32"/> underlying type.
            </summary>
            <param name="namespaceName">Namespace this enumeration type belongs to.</param>
            <param name="name">Name of this enumeration type.</param>
            <param name="isFlags">A value indicating whether the enumeration type can be treated as a bit field.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEnumType.#ctor(System.String,System.String,Microsoft.OData.Edm.EdmPrimitiveTypeKind,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEnumType"/> class with <see cref="F:Microsoft.OData.Edm.EdmPrimitiveTypeKind.Int32"/> underlying type.
            </summary>
            <param name="namespaceName">Namespace this enumeration type belongs to.</param>
            <param name="name">Name of this enumeration type.</param>
            <param name="underlyingType">The underlying type of this enumeration type.</param>
            <param name="isFlags">A value indicating whether the enumeration type can be treated as a bit field.</param>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEnumType.#ctor(System.String,System.String,Microsoft.OData.Edm.IEdmPrimitiveType,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.OData.Edm.EdmEnumType"/> class.
            </summary>
            <param name="namespaceName">Namespace this enumeration type belongs to.</param>
            <param name="name">Name of this enumeration type.</param>
            <param name="underlyingType">The underlying type of this enumeration type.</param>
            <param name="isFlags">A value indicating whether the enumeration type can be treated as a bit field.</param>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.TypeKind">
            <summary>
            Gets the kind of this type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.SchemaElementKind">
            <summary>
            Gets the kind of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.Namespace">
            <summary>
            Gets the namespace this schema element belongs to.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.Name">
            <summary>
            Gets the name of this enumeration type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.FullName">
            <summary>
            Gets the full name of this schema element.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.UnderlyingType">
            <summary>
            Gets the underlying type of this enumeration type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.Members">
            <summary>
            Gets the members of this enumeration type.
            </summary>
        </member>
        <member name="P:Microsoft.OData.Edm.EdmEnumType.IsFlags">
            <summary>
            Gets a value indicating whether the enumeration type can be treated as a bit field.
            </summary>
        </member>
        <member name="M:Microsoft.OData.Edm.EdmEnumType.AddMember(Microsoft.OData.Edm.IEdmEnu