EdmValidator.Validate Method (IEdmModel, Version, IEnumerable<EdmError>%)
Validates the IEdmModel and all of its properties given certain version.
Namespace: Microsoft.Data.Edm.Validation
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Validate ( _
root As IEdmModel, _
version As Version, _
<OutAttribute> ByRef errors As IEnumerable(Of EdmError) _
) As Boolean
'Usage
Dim root As IEdmModel
Dim version As Version
Dim errors As IEnumerable(Of EdmError)
Dim returnValue As Boolean
returnValue = root.Validate(version, _
errors)
public static bool Validate(
this IEdmModel root,
Version version,
out IEnumerable<EdmError> errors
)
[ExtensionAttribute]
public:
static bool Validate(
IEdmModel^ root,
Version^ version,
[OutAttribute] IEnumerable<EdmError^>^% errors
)
static member Validate :
root:IEdmModel *
version:Version *
errors:IEnumerable<EdmError> byref -> bool
public static function Validate(
root : IEdmModel,
version : Version,
errors : IEnumerable<EdmError>
) : boolean
Parameters
- root
Type: Microsoft.Data.Edm.IEdmModel
The root of the model to be validated.
- version
Type: System.Version
The version of EDM to validate against.
- errors
Type: System.Collections.Generic.IEnumerable<EdmError>%
The errors encountered while validating the model.
Return Value
Type: System.Boolean
True if model is valid, otherwise false.
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).