Thanks for the video. would you like to share code repo of this sample in github if you still got one? Is the n+1 problem limitation of the orm?
@kevingilpin56502 жыл бұрын
Yes, N+1 is an issue with basically all ORM, because as you use the code to loop over a collection of objects, if you access a property of that object it may trigger a query to go fetch the data. You can find a code example her - github.com/land-of-apps/spring-petclinic