Compartir a través de


KeySegment Constructores

Definición

Sobrecargas

KeySegment(IEnumerable<KeyValuePair<String,Object>>, IEdmEntityType, IEdmNavigationSource)

Crea un segmento que representa una búsqueda de clave.

KeySegment(ODataPathSegment, IEnumerable<KeyValuePair<String,Object>>, IEdmEntityType, IEdmNavigationSource)

Crea un segmento que representa una búsqueda de clave.

KeySegment(IEnumerable<KeyValuePair<String,Object>>, IEdmEntityType, IEdmNavigationSource)

Crea un segmento que representa una búsqueda de clave.

public KeySegment (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>> keys, Microsoft.OData.Edm.IEdmEntityType edmType, Microsoft.OData.Edm.IEdmNavigationSource navigationSource);
new Microsoft.OData.UriParser.KeySegment : seq<System.Collections.Generic.KeyValuePair<string, obj>> * Microsoft.OData.Edm.IEdmEntityType * Microsoft.OData.Edm.IEdmNavigationSource -> Microsoft.OData.UriParser.KeySegment
Public Sub New (keys As IEnumerable(Of KeyValuePair(Of String, Object)), edmType As IEdmEntityType, navigationSource As IEdmNavigationSource)

Parámetros

keys
IEnumerable<KeyValuePair<String,Object>>

Conjunto de nombres de propiedad de clave y los valores que se usarán al buscar el elemento especificado.

edmType
IEdmEntityType

Tipo del elemento que esta clave devuelve.

navigationSource
IEdmNavigationSource

Origen de navegación que esta clave se usa para buscar.

Excepciones

Se produce si el conjunto de entidades de entrada no está relacionado con el tipo de entrada.

Se aplica a

KeySegment(ODataPathSegment, IEnumerable<KeyValuePair<String,Object>>, IEdmEntityType, IEdmNavigationSource)

Crea un segmento que representa una búsqueda de clave.

public KeySegment (Microsoft.OData.UriParser.ODataPathSegment previous, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>> keys, Microsoft.OData.Edm.IEdmEntityType edmType, Microsoft.OData.Edm.IEdmNavigationSource navigationSource);
new Microsoft.OData.UriParser.KeySegment : Microsoft.OData.UriParser.ODataPathSegment * seq<System.Collections.Generic.KeyValuePair<string, obj>> * Microsoft.OData.Edm.IEdmEntityType * Microsoft.OData.Edm.IEdmNavigationSource -> Microsoft.OData.UriParser.KeySegment
Public Sub New (previous As ODataPathSegment, keys As IEnumerable(Of KeyValuePair(Of String, Object)), edmType As IEdmEntityType, navigationSource As IEdmNavigationSource)

Parámetros

previous
ODataPathSegment

Segmento al que se va a aplicar la clave.

keys
IEnumerable<KeyValuePair<String,Object>>

Conjunto de nombres de propiedad de clave y los valores que se usarán al buscar el elemento especificado.

edmType
IEdmEntityType

Tipo del elemento que esta clave devuelve.

navigationSource
IEdmNavigationSource

Origen de navegación que esta clave se usa para buscar.

Excepciones

Se produce si el conjunto de entidades de entrada no está relacionado con el tipo de entrada.

Se aplica a