Bonjour,
encore et toujours des problèmes.
J'ai une procédure stockée avec un "FOR XML AUTO" qui me renvoie un flux xml. De l'autre côté j'ai ma fenêtre wpf avec 3 combobox en cascade.
Je cherche à récupérer mon flux xml et alimenter mes combobox.
J'ai ça :
Pour l'instant j'ai bien mon flux xml, mais je fais quoi avec ? j'utilise un xmlwriter ? un xmlreader ? un xmldocument ? Pour alimenter mes combobox j'utilise un xmldataprovider ou je les plugs direct dans le code ? Merci !
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 Database vBase = DatabaseFactory.CreateDatabase("Local"); DbCommand vCommand = vBase.GetStoredProcCommand("sp_Objets_selectall"); vBase.ExecuteScalar(vCommand).ToString();
Partager