SerializationExtensionMethods.GetEdmxVersion Method
Gets the version used for the edmx of a navigation property of an entity set.
Namespace: Microsoft.Data.Edm.Csdl
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetEdmxVersion ( _
model As IEdmModel _
) As Version
'Usage
Dim model As IEdmModel
Dim returnValue As Version
returnValue = model.GetEdmxVersion()
public static Version GetEdmxVersion(
this IEdmModel model
)
[ExtensionAttribute]
public:
static Version^ GetEdmxVersion(
IEdmModel^ model
)
static member GetEdmxVersion :
model:IEdmModel -> Version
public static function GetEdmxVersion(
model : IEdmModel
) : Version
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
Model containing the entity set.
Return Value
Type: System.Version
The version used for the edmx.
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).