SerializationExtensionMethods.GetNamespacePrefixMappings Method
Gets the prefix mappings of the namespace for a navigation property.
Namespace: Microsoft.Data.Edm.Csdl
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetNamespacePrefixMappings ( _
model As IEdmModel _
) As IEnumerable(Of KeyValuePair(Of String, String))
'Usage
Dim model As IEdmModel
Dim returnValue As IEnumerable(Of KeyValuePair(Of String, String))
returnValue = model.GetNamespacePrefixMappings()
public static IEnumerable<KeyValuePair<string, string>> GetNamespacePrefixMappings(
this IEdmModel model
)
[ExtensionAttribute]
public:
static IEnumerable<KeyValuePair<String^, String^>>^ GetNamespacePrefixMappings(
IEdmModel^ model
)
static member GetNamespacePrefixMappings :
model:IEdmModel -> IEnumerable<KeyValuePair<string, string>>
public static function GetNamespacePrefixMappings(
model : IEdmModel
) : IEnumerable<KeyValuePair<String, String>>
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
Model containing the entity set.
Return Value
Type: System.Collections.Generic.IEnumerable<KeyValuePair<String, String>>
The prefix mappings of the 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).