hi, can i ask the way how to delete from grid syncfusion?
here my code
public IActionResult RemovePassenger([FromBody] CRUDModel<Passenger> value) //this value is null( i dont know why its null)
{
Passenger result = new Passenger();
result = passengerdal.DeletePassenger(value.Value);
return Json(result);
}
thank you. I hope you can help me