标签: c# .net mongodb driver
我有一份这样的文件清单:
var list = col.Find(_ => true).ToList();
其中col是我的文档集合,
我必须做这个功能:
List<Employee> getemployees()
如何返回拥有文件清单的员工名单?
谢谢。