1

我有以下结构。产品嵌入商店;评论嵌入在产品中。

1- Store
  2-Products[]-->
     3-Reviews[]

我正在尝试添加一个新项目以使用以下代码进行审查。它没有给我错误,但也没有添加它。

Query q1=ds.createQuery(Product.class).filter("Code", code);
if(q1.countAll()==1)
    {
    ops = ds.createUpdateOperations(Product.class).add("Reviews", review);
    ds.update(q1, ops);
    }
4

1 回答 1

0

我想到了。唯一的是查询嵌入式产品,通过添加新评论对其进行修改,并使用 ds.CreateUpdateOperations().Set(ops) 更新该产品

于 2012-09-21T19:41:25.783 回答