I am not a 100% on how to do this yet . But I will explain the situation first.
I am letting a user search for book and give 10 recommendations based on the first result in search . I store the recommended Books in RecommendBooks(POJO)
once I have the recommended books I am getting the review on each book storing in another POJO BookReview(POJO)
.
Intention : Now I want to show the recommeded book based on the review
I am kind of stuck on how to sort the reviews and not basically create a copy of RecommendedBooks that is orderd based on review.
Anyone has any good way of doing this?