Méthode EdmxWriter.TryWriteEdmx
Génère un artefact EDMX pour le XmlWriter fourni.
Espace de noms : Microsoft.Data.Edm.Csdl
Assembly : Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Syntaxe
'Déclaration
Public Shared Function TryWriteEdmx ( _
model As IEdmModel, _
writer As XmlWriter, _
target As EdmxTarget, _
<OutAttribute> ByRef errors As IEnumerable(Of EdmError) _
) As Boolean
'Utilisation
Dim model As IEdmModel
Dim writer As XmlWriter
Dim target As EdmxTarget
Dim errors As IEnumerable(Of EdmError)
Dim returnValue As Boolean
returnValue = EdmxWriter.TryWriteEdmx(model, _
writer, target, errors)
public static bool TryWriteEdmx(
IEdmModel model,
XmlWriter writer,
EdmxTarget target,
out IEnumerable<EdmError> errors
)
public:
static bool TryWriteEdmx(
IEdmModel^ model,
XmlWriter^ writer,
EdmxTarget target,
[OutAttribute] IEnumerable<EdmError^>^% errors
)
static member TryWriteEdmx :
model:IEdmModel *
writer:XmlWriter *
target:EdmxTarget *
errors:IEnumerable<EdmError> byref -> bool
public static function TryWriteEdmx(
model : IEdmModel,
writer : XmlWriter,
target : EdmxTarget,
errors : IEnumerable<EdmError>
) : boolean
Paramètres
- model
Type : Microsoft.Data.Edm.IEdmModel
Modèle à écrire.
- writer
Type : System.Xml.XmlWriter
XmlWriter dans lequel l'EDMX généré est écrit.
- target
Type : Microsoft.Data.Edm.Csdl.EdmxTarget
Implémentation cible de l'EDMX en cours de génération.
- errors
Type : System.Collections.Generic.IEnumerable<EdmError>%
Erreurs qui ont empêché la sérialisation, ou aucune erreur si la sérialisation a réussi.
Valeur de retour
Type : System.Boolean
true si la sérialisation a réussi ; sinon, false.