一、查询
var doc = new Document();
1、模糊查询
var reg = new
MongoRegex(".*" + qry.名称 + ".*", MongoRegexOption.IgnoreCase);
doc["Name"] =
reg;
2、IN查询
var docIn = new Document("$in",
qry.名称.Split(‘,‘));
doc["Name"] = docIn;
3、等值查询
doc["Name"] =
qry.名称;
4、介于时间值之间
Document docLessGreater = new
Document();//参数
doc.Insert("$gte", startTime,
0);//大于开始时间
doc.Insert("$lte", endTime, 1);//小于结束时间
doc["CollectTime"] =
docLessGreater;
相关文章
- 08-21Git -- 新增分支添加新功能
- 08-21常用的windowd属性和对象
- 08-21Chrome 92 破坏性功能,我这弹窗有何用?
- 08-21html中部分常用的实体符号集
- 08-21[转帖]数据需求统计常用shell命令---AWK分组求和,分组统计次数
- 08-21vim的分屏功能
- 08-2114.jQuery常用方法
- 08-21elementUI实现分页功能
- 08-21shell 的常用命令
- 08-21个人主页展示系统(springBoot)-no6-信息查询功能开发