您能解决此问题吗,当我使用mongodb c#驱动程序从mongodb检索数据时,我遇到找不到创建者的问题。
这是我使用的模型类
[BsonIgnoreExtraElements]
class Employee
{
[BsonElement("name")]
public string Name { get; set; }
[BsonElement("gender")]
public string Gender { get; set; }
[BsonElement("city")]
public string City { get; set; }
[BsonElement("country")]
public string Country{get;set;}
}
我正在反序列化
var _ListofEmployees = (from emp in _IMongoCollection<Employee>.AsQueryable()
select new
{
Name = emp.Name,
City = emp.City
});
foreach (var Employee in _ListofEmployee)
{
Console.WriteLine("Name :"+Employee.Name+"\n"+"City :"+Employee.City);
}
注意:,Mongodb集合的文档中没有“国家/地区”字段