我有以下结构。产品嵌入商店;评论嵌入在产品中。
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);
}