BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi Niklas,
Greetings from Syncfusion.
We have validated your query and suspect that the message
thrown might be due to garbage collection. However, we will validate
further on this and let you know ASAP.
Please let us know if you have any concerns.
Regards,
Sridurgha U
[HttpGet]
[Route("/api/getorders")]
public IEnumerableGetOrders()
{
ListGridData = new List
{
new OrdersDetails() { OrderID = 10248, CustomerID = "VINET", Freight = 32.38, ShipCity = "Berlin",
OrderDate = DateTime.Now.AddDays(-2), ShipName = "Vins et alcools Chevalier",
ShipCountry = "Denmark", ShipAddress = "Kirchgasse 6" },
new OrdersDetails() { OrderID = 10249, CustomerID = "TOMSP", Freight = 11.61, ShipCity = "Madrid",
OrderDate = DateTime.Now.AddDays(-5), ShipName = "Toms Spezialitäten",
ShipCountry = "Brazil", ShipAddress = "Avda. Azteca 123" }
};
return GridData;
}