SerializationExtensionMethods.GetAssociationFullName Method
Gets the fully-qualified name used for the association 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 GetAssociationFullName ( _
model As IEdmModel, _
property As IEdmNavigationProperty _
) As String
'Usage
Dim model As IEdmModel
Dim property As IEdmNavigationProperty
Dim returnValue As String
returnValue = model.GetAssociationFullName(property)
public static string GetAssociationFullName(
this IEdmModel model,
IEdmNavigationProperty property
)
[ExtensionAttribute]
public:
static String^ GetAssociationFullName(
IEdmModel^ model,
IEdmNavigationProperty^ property
)
static member GetAssociationFullName :
model:IEdmModel *
property:IEdmNavigationProperty -> string
public static function GetAssociationFullName(
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 fully-qualified association 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).