SerializationExtensionMethods.GetAssociationSetAnnotations Method

Gets the annotations associated with the association serialized for a navigation target of an entity set.

Namespace:  Microsoft.Data.Edm.Csdl
Assembly:  Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)

Syntax

'Declaration
<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) _
)
'Usage
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>
)

Parameters

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).

See Also

Reference

SerializationExtensionMethods Class

Microsoft.Data.Edm.Csdl Namespace