我将 DoctrineMongoDBOBundle 与 Symfony2 一起使用。
我有一个文档产品,它有一个对其他文档价格的注释 referenceOne。
当我使用 queryBuilder 获取时,我想按价格排序。
$qb = $dm->createQueryBuilder('MyBundle:Product')
->field('geocoordinates')
->near('lat','lon')
->sort('hasPrice','desc')
但这不起作用。也许是为了近处使用?
它取决于 Document Price 的 toString() 方法吗?
问候。