EdmNavigationPropertyPathExpression Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EdmNavigationPropertyPathExpression(IEnumerable<String>) |
Initializes a new instance of the EdmNavigationPropertyPathExpression class. |
EdmNavigationPropertyPathExpression(String) |
Initializes a new instance of the EdmNavigationPropertyPathExpression class. |
EdmNavigationPropertyPathExpression(String[]) |
Initializes a new instance of the EdmNavigationPropertyPathExpression class. |
EdmNavigationPropertyPathExpression(IEnumerable<String>)
Initializes a new instance of the EdmNavigationPropertyPathExpression class.
public EdmNavigationPropertyPathExpression (System.Collections.Generic.IEnumerable<string> pathSegments);
new Microsoft.OData.Edm.Vocabularies.EdmNavigationPropertyPathExpression : seq<string> -> Microsoft.OData.Edm.Vocabularies.EdmNavigationPropertyPathExpression
Public Sub New (pathSegments As IEnumerable(Of String))
Parameters
- pathSegments
- IEnumerable<String>
Path segments.
Applies to
EdmNavigationPropertyPathExpression(String)
Initializes a new instance of the EdmNavigationPropertyPathExpression class.
public EdmNavigationPropertyPathExpression (string path);
new Microsoft.OData.Edm.Vocabularies.EdmNavigationPropertyPathExpression : string -> Microsoft.OData.Edm.Vocabularies.EdmNavigationPropertyPathExpression
Public Sub New (path As String)
Parameters
- path
- String
Path string containing segments separated by '/'. For example: "A.B/C/D.E/Func1(NS.T,NS.T2)/P1".
Applies to
EdmNavigationPropertyPathExpression(String[])
Initializes a new instance of the EdmNavigationPropertyPathExpression class.
public EdmNavigationPropertyPathExpression (params string[] pathSegments);
new Microsoft.OData.Edm.Vocabularies.EdmNavigationPropertyPathExpression : string[] -> Microsoft.OData.Edm.Vocabularies.EdmNavigationPropertyPathExpression
Public Sub New (ParamArray pathSegments As String())
Parameters
- pathSegments
- String[]
Path segments.