这段代码的结果格式有问题
public JsonResult getCategorias(int? id)
{
var res = from c in db.Categorias
where (( id.HasValue && c.CategoriaPadre == id.Value) || (!id.HasValue && c.CategoriaPadre == null))
select new { id = c.Id, label = c.Descripcion };
return this.Json(res, JsonRequestBehavior.AllowGet);
}
这返回一个json
:
[{"id":21,"label":"Marketing3"},{"id":22,"label":"Marketing4"}]
但我需要json
这种格式:
{"21":"Marketing3","22":"Marketing4"}
我能做些什么?
非常感谢,对不起我的英语。