IEdmPathExpression Interface

Definition

Represents an EDM path expression.

public interface IEdmPathExpression : Microsoft.OData.Edm.IEdmExpression
type IEdmPathExpression = interface
    interface IEdmExpression
    interface IEdmElement
Public Interface IEdmPathExpression
Implements IEdmExpression
Derived
Implements

Properties

ExpressionKind

Gets the kind of this expression.

(Inherited from IEdmExpression)
Path

Gets the path string, like "A.B/C/D.E".

PathSegments

Gets the path segments as a decomposed qualified name. "A.B/C/D.E" is { "A.B", "C", "D.E" }.

Extension Methods

Location(IEdmElement)

Gets the location of this element.

TryCast(IEdmExpression, IEdmTypeReference, IEdmType, Boolean, IEnumerable<EdmError>)

Determines if the type of an expression is compatible with the provided type

TryCast(IEdmExpression, IEdmTypeReference, IEnumerable<EdmError>)

Determines if the type of an expression is compatible with the provided type

Errors(IEdmElement)

Gets the errors, if any, that belong to this element or elements that this element contains. For example errors for a structural type include the errors of the type itself and errors of its declared properties. The method does not analyze elements referenced by this element. For example errors of a property do not include errors from its type.

IsBad(IEdmElement)

Returns true if this element contains errors returned by the Errors(IEdmElement) method.

Applies to