Hi,
My team is using EF Core and Syncfusion 18.1.0.44 and when trying to use a model with circular references, the Grid component displays a loading and is frozen.
public class Car {
public int Id { get; set; }
public ICollection<CarPart> CarParts { get; set; }
}
public class CarPart {
public int Id { get; set; }
public int CarId { get; set; }
public Car Car { get; set; }
}
If we remove the CarParts property from Car, the table works as expected, but we need the property to be there.
Unfortunately, we cannot share the code in our project so let me know if this example is enough or if you require a demo application and I can provide it.
Thank you,
Nicu