Hi,
We are using the Grid widget for ASP.NET Core which uses AJAX calls to our ASP.NET Core MVC Controller action methods.
Why would the Read method result in multiple calls to the Controller action method?
.DataSource(dataSource => dataSource
.Ajax()
.Events(e => e.RequestStart("onRequestStart"))
.Read(read => read.Action("ListCars", "CarController"))
)