/// <summary> /// Build a segment representing a property. /// </summary> /// <param name="path">Path to perform the computation on.</param> /// <param name="property">The property this segment represents.</param> /// <returns>>A new ODataPath with property segment appended to the end.</returns> public static ODataPath AddPropertySegment(this ODataPath path, IEdmStructuralProperty property) { PropertySegment propertySegment = new PropertySegment(property); return(path.AddSegment(propertySegment)); }
/// <summary> /// Build a segment representing a navigation property. /// </summary> /// <param name="path">Path to perform the computation on.</param> /// <param name="navigationProperty">The navigation property this segment represents.</param> /// <param name="navigationSource">The navigation source of the entities targeted by this navigation property. This can be null.</param> /// <returns>A new ODataPath with navigation property segment appended to the end.</returns> public static ODataPath AddNavigationPropertySegment(this ODataPath path, IEdmNavigationProperty navigationProperty, IEdmNavigationSource navigationSource) { NavigationPropertySegment navigationSegment = new NavigationPropertySegment(navigationProperty, navigationSource); return(path.AddSegment(navigationSegment)); }