web-dev-qa-db-fra.com

JsonResult retourne Json dans ASP.NET CORE 2.1

Contrôleur ayant fonctionné dans ASP.NET Core 2.0:

[Produces("application/json")]
[Route("api/[controller]")]
[ApiController]
public class GraficResourcesApiController : ControllerBase
{    
    private readonly ApplicationDbContext _context;

    public GraficResourcesApiController(ApplicationDbContext context)
    {
        _context = context;
    }

    [HttpGet]
    public JsonResult GetGrafic(int ResourceId)
    {
        var sheduling = new List<Sheduling>();


        var events = from e in _context.Grafic.Where(c=>c.ResourceId == ResourceId)
                     select new
                     {
                         id = e.Id,
                         title = e.Personals.Name,
                         start = e.DateStart,
                         end = e.DateStop,
                         color = e.Personals.Color,
                         personalId = e.PersonalId,
                         description = e.ClientName
                     };
        var rows = events.ToArray();

        return Json(rows);
    }
}

dans ASP.NET Core 2.1

return Json (rows);

écrit que Json n'existe pas dans le contexte actuel. Si on enlève Json en laissant simplement

return rows;

puis écrit qu'il n'était pas possible de convertir explicitement le type List () en JsonResult

Comment se convertir à Json maintenant?

19
blakcat

Dans asp.net-core-2.1ControllerBase n'a pas de Json(Object) méthode. Cependant Controller le fait.

Donc soit refactor le contrôleur actuel à dériver de Controller

_public class GraficResourcesApiController : Controller {
    //...
}
_

avoir accès à la méthode Controller.Json ou vous pouvez initialiser une nouvelle JsonResult vous-même dans l'action

_return new JsonResult(rows);
_

ce qui est fondamentalement ce que la méthode fait en interne dans Controller

_/// <summary>
/// Creates a <see cref="JsonResult"/> object that serializes the specified <paramref name="data"/> object
/// to JSON.
/// </summary>
/// <param name="data">The object to serialize.</param>
/// <returns>The created <see cref="JsonResult"/> that serializes the specified <paramref name="data"/>
/// to JSON format for the response.</returns>
[NonAction]
public virtual JsonResult Json(object data)
{
    return new JsonResult(data);
}

/// <summary>
/// Creates a <see cref="JsonResult"/> object that serializes the specified <paramref name="data"/> object
/// to JSON.
/// </summary>
/// <param name="data">The object to serialize.</param>
/// <param name="serializerSettings">The <see cref="JsonSerializerSettings"/> to be used by
/// the formatter.</param>
/// <returns>The created <see cref="JsonResult"/> that serializes the specified <paramref name="data"/>
/// as JSON format for the response.</returns>
/// <remarks>Callers should cache an instance of <see cref="JsonSerializerSettings"/> to avoid
/// recreating cached data with each call.</remarks>
[NonAction]
public virtual JsonResult Json(object data, JsonSerializerSettings serializerSettings)
{
    if (serializerSettings == null)
    {
        throw new ArgumentNullException(nameof(serializerSettings));
    }

    return new JsonResult(data, serializerSettings);
}
_

Source

33
Nkosi