使用 Mongo DB (Azure cosmos DB),我需要根据文档中的 2 个字段过滤掉对象
这是一个示例类:
class Event{
public long startTime;
public long endTime;
}
我需要找到他们的 startTime==endTime 的所有事件
在sql中我会做
Select * from Events where startTime=endTime
or
Select * from Events where startTime!=endTime
我如何在mongo中做到这一点?
collection.find(???).first();