I have an asp.net core app which returns data in a c# data table object from an API function. The data returns is anonymous and cannot be parsed to a strongly typed ViewModel class. Please guide me how this data can be displayed in frontend using angular 4.
[HttpPost, Route("display")]
public IActionResult Display(int id)
{
DataTable datatable = Service.GetDataById(id);
return Ok(datatable);
}