SerializationExtensionMethods.GetAssociationSetAnnotations Método
Obtiene las anotaciones asociadas a la asociación serializada para un destino de navegación de un conjunto de entidades.
Espacio de nombres: Microsoft.Data.Edm.Csdl
Ensamblado: Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Sintaxis
'Declaración
<ExtensionAttribute> _
Public Shared Sub GetAssociationSetAnnotations ( _
model As IEdmModel, _
entitySet As IEdmEntitySet, _
property As IEdmNavigationProperty, _
<OutAttribute> ByRef annotations As IEnumerable(Of IEdmDirectValueAnnotation), _
<OutAttribute> ByRef end1Annotations As IEnumerable(Of IEdmDirectValueAnnotation), _
<OutAttribute> ByRef end2Annotations As IEnumerable(Of IEdmDirectValueAnnotation) _
)
'Uso
Dim model As IEdmModel
Dim entitySet As IEdmEntitySet
Dim property As IEdmNavigationProperty
Dim annotations As IEnumerable(Of IEdmDirectValueAnnotation)
Dim end1Annotations As IEnumerable(Of IEdmDirectValueAnnotation)
Dim end2Annotations As IEnumerable(Of IEdmDirectValueAnnotation)
model.GetAssociationSetAnnotations(entitySet, _
property, annotations, end1Annotations, _
end2Annotations)
public static void GetAssociationSetAnnotations(
this IEdmModel model,
IEdmEntitySet entitySet,
IEdmNavigationProperty property,
out IEnumerable<IEdmDirectValueAnnotation> annotations,
out IEnumerable<IEdmDirectValueAnnotation> end1Annotations,
out IEnumerable<IEdmDirectValueAnnotation> end2Annotations
)
[ExtensionAttribute]
public:
static void GetAssociationSetAnnotations(
IEdmModel^ model,
IEdmEntitySet^ entitySet,
IEdmNavigationProperty^ property,
[OutAttribute] IEnumerable<IEdmDirectValueAnnotation^>^% annotations,
[OutAttribute] IEnumerable<IEdmDirectValueAnnotation^>^% end1Annotations,
[OutAttribute] IEnumerable<IEdmDirectValueAnnotation^>^% end2Annotations
)
static member GetAssociationSetAnnotations :
model:IEdmModel *
entitySet:IEdmEntitySet *
property:IEdmNavigationProperty *
annotations:IEnumerable<IEdmDirectValueAnnotation> byref *
end1Annotations:IEnumerable<IEdmDirectValueAnnotation> byref *
end2Annotations:IEnumerable<IEdmDirectValueAnnotation> byref -> unit
public static function GetAssociationSetAnnotations(
model : IEdmModel,
entitySet : IEdmEntitySet,
property : IEdmNavigationProperty,
annotations : IEnumerable<IEdmDirectValueAnnotation>,
end1Annotations : IEnumerable<IEdmDirectValueAnnotation>,
end2Annotations : IEnumerable<IEdmDirectValueAnnotation>
)
Parámetros
- model
Tipo: Microsoft.Data.Edm.IEdmModel
Modelo que contiene el conjunto de entidades.
- entitySet
Tipo: Microsoft.Data.Edm.IEdmEntitySet
Conjunto de entidades.
- property
Tipo: Microsoft.Data.Edm.IEdmNavigationProperty
La propiedad de navegación.
- annotations
Tipo: System.Collections.Generic.IEnumerable<IEdmDirectValueAnnotation>%
Anotaciones del conjunto de asociaciones.
- end1Annotations
Tipo: System.Collections.Generic.IEnumerable<IEdmDirectValueAnnotation>%
Anotaciones para el extremo del conjunto de asociaciones 1.
- end2Annotations
Tipo: System.Collections.Generic.IEnumerable<IEdmDirectValueAnnotation>%
Anotaciones para el extremo del conjunto de asociaciones 2.
Nota de uso
En Visual Basic y C#, puede llamar a este método como un método de instancia en cualquier objeto del tipo IEdmModel. Cuando utilice la sintaxis del método de instancia para llamar a este método, sáltese este parámetro primero. Para obtener más información, vea https://msdn.microsoft.com/es-es/library/bb384936(v=vs.103) o https://msdn.microsoft.com/es-es/library/bb383977(v=vs.103).