MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Morphia/MongoDB:accesso all'oggetto di incorporamento da un oggetto @Embedded

Dato che hai già l'oggetto del post di blog, perché non utilizzare un semplice loop Java per filtrarlo?

@Entity
class BlogEntry {

    @Embedded
    List<BlogComment> comments

    public BlogComment findCommentByAuthorId(String authorId) {
        if (null == authorId) return null;
        for (BlogComment comment: blogEntry.comments) {
           if (authorId.equals(comment.authorId) return comment;
        }
        return null;
    }

}