Asp.net – EF Core: Disconnected delete from a large child collection with pagination
My question is based on a similar question but with the added complexity of pagination. public class Parent { public Parent() { this.Children = new List<Child>(); } public int Id { get; set; } public virtual ICollection<Child> Children { get;…