- Je veux récupérer des enregistrements de la base de données dans un
DataTable
. - Ensuite, convertissez le
DataTable
en un objet JSON. - Renvoyer l'objet JSON à ma fonction JavaScript.
J'utilise este en appelant :
string result = JsonConvert.SerializeObject(DatatableToDictionary(queryResult, "Title"), Newtonsoft.Json.Formatting.Indented);
Pour convertir une DataTable en JSON, cela fonctionne correctement et renvoie ce qui suit :
{
"1": {
"viewCount": 703,
"clickCount": 98
},
"2": {
"viewCount": 509,
"clickCount": 85
},
"3": {
"viewCount": 578,
"clickCount": 86
},
"4": {
"viewCount": 737,
"clickCount": 108
},
"5": {
"viewCount": 769,
"clickCount": 130
}
}
Mais je voudrais qu'il renvoie ce qui suit :
{"records":[
{
"Title": 1,
"viewCount": 703,
"clickCount": 98
},
{
"Title": 2,
"viewCount": 509,
"clickCount": 85
},
{
"Title": 3,
"viewCount": 578,
"clickCount": 86
},
{
"Title": 4,
"viewCount": 737,
"clickCount": 108
},
{
"Title": 5,
"viewCount": 769,
"clickCount": 130
}
]}
Comment puis-je le faire ?