if i know correct each Repository is on Entity
I have and ProductService then i need to get current product's images ,
there is not some repository for Images.
And my Product repositoy is responsible of product Entity.
Repository just return to us Entity objects because repositories should be unaware from DTO objects if i know correct.
So briefly How can i return Images entity. How should i get current selected product Images.
Between product and Images Foreign Key .
But product can have 10.000 Image row in database.
I need IQueryable data of them 10 by 10.
I tried Product.Images bla bla.. .but it didnt satisfied me.
Or should i create a new ImageRepository and inject it to Product service.
Then use it with filtered method which inside in BaseRepository.
How can i design it ?