SerializationExtensionMethods.GetAssociationEndName Method
Gets the name used for the association end serialized for a navigation property.
Namespace: Microsoft.Data.Edm.Csdl
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetAssociationEndName ( _
model As IEdmModel, _
property As IEdmNavigationProperty _
) As String
'Usage
Dim model As IEdmModel
Dim property As IEdmNavigationProperty
Dim returnValue As String
returnValue = model.GetAssociationEndName(property)
public static string GetAssociationEndName(
this IEdmModel model,
IEdmNavigationProperty property
)
[ExtensionAttribute]
public:
static String^ GetAssociationEndName(
IEdmModel^ model,
IEdmNavigationProperty^ property
)
static member GetAssociationEndName :
model:IEdmModel *
property:IEdmNavigationProperty -> string
public static function GetAssociationEndName(
model : IEdmModel,
property : IEdmNavigationProperty
) : String
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
Model containing the navigation property.
- property
Type: Microsoft.Data.Edm.IEdmNavigationProperty
The navigation property.
Return Value
Type: System.String
The association end name.
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).