我需要在GAE一個簡單的應用:谷歌應用程序引擎的數據庫模型
我有用戶:
public User {
private @Id Long id;
private String name;
}
和消息
private Message {
private @Id Long id;
private Key sender;
private Key reciever;
private Date sendDate;
}
的問題是: 我需要的所有fetch由dandDate排序的給定用戶發送和接收的消息。
我想我選擇了錯誤的模型。
你能告訴我什麼嗎?
謝謝。
如果我沒有誤會,則無法在BigTable查詢中使用「OR」。 – 2010-06-22 16:47:29