MongoDB
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> MongoDB

Cần một giải pháp thay thế để tra cứu một chuỗi thành objectID ForeignField

Tính năng mới trong 4.0:https://docs.mongodb.com/manual/reference/operator/aggregation/toObjectId/

// Define stage to add convertedId field with converted _id value

idConversionStage = {
   $addFields: {
      convertedId: { $toObjectId: "$_id" }
   }
};

// Define stage to sort documents by the converted qty values

sortStage = {
   $sort: { "convertedId": -1 }
};


db.orders.aggregate( [
   idConversionStage,
   sortStage
])


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Chuỗi kết nối người dùng tùy chỉnh cho các phiên bản MongoDB có xác thực

  2. Cách giải mã hóa một đối tượng BsonDocument trở lại lớp

  3. MongoDB Security - Tài nguyên để giữ an toàn cho các DB NoSQL

  4. nhóm mongodb dữ liệu mùa xuân bởi

  5. Cách cập nhật và nâng cấp nhiều tài liệu trong MongoDB bằng Trình điều khiển C #