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