Méthode SerializationExtensionMethods.GetAssociationSetAnnotations
Obtient les annotations associées à l'association sérialisée pour une cible de navigation d'un jeu d'entités.
Espace de noms : Microsoft.Data.Edm.Csdl
Assembly : Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Syntaxe
'Déclaration
<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) _
)
'Utilisation
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>
)
Paramètres
- model
Type : Microsoft.Data.Edm.IEdmModel
Modèle contenant le jeu d'entités.
- entitySet
Type : Microsoft.Data.Edm.IEdmEntitySet
Jeu d'entités.
- property
Type : Microsoft.Data.Edm.IEdmNavigationProperty
Propriété de navigation.
- annotations
Type : System.Collections.Generic.IEnumerable<IEdmDirectValueAnnotation>%
Annotations de l'ensemble d'associations.
- end1Annotations
Type : System.Collections.Generic.IEnumerable<IEdmDirectValueAnnotation>%
Annotations pour la terminaison d'ensemble d'associations 1.
- end2Annotations
Type : System.Collections.Generic.IEnumerable<IEdmDirectValueAnnotation>%
Annotations pour la terminaison d'ensemble d'associations 2.
Remarque relative à l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme méthode d'instance sur tout objet de type IEdmModel. Lorsque vous utilisez la syntaxe de la méthode d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=vs.103) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=vs.103).