Asp.net – Include() not working with Take() when performing a split query
I have collection of Images in my Product class: public ICollection<Image> Images { get; set; } = null!; I ran into problem where Images are not being included when I try to take only 4 first products. This code includes…