Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have one to many relationship within single entity group in GAE datastore implemented by 2 classes:

User.java:

public class User {
    ...
    @Persistent(mappedBy = "user", defaultFetchGroup="true")
    private List<Note> noteSets;

Note.java:

public class Note {
    ... 
    @Persistent
    private User user;

And I have following code to delete one Note by user key and note id:

public static void deleteNote(String userKey, long noteId) {
        PersistenceManager pm = DatastoreManager.get().getPersistenceManager();
        try {
            User user = pm.getObjectById(User.class, userKey);
            Key childKey = user.getUserKey().getChild(Note.class.getSimpleName(), noteId);
            Note note = pm.getObjectById(Note.class, childKey);
            pm.deletePersistent(note);
        } finally {
            pm.close();
        }
    }

This code works fine except for sometimes it removes more than 1 Note entity. What is the reason for such behaviour?

share|improve this question
The issue was in update function. After update items in List<Note> noteSets were set with same id. It caused them to be deleted once at least one of them has been deleted. – alexd84 May 5 '12 at 17:43
please make this comment as answer to close the subject – Sam May 7 '12 at 13:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.