MongoDB查询转对象是出错Element '_id' does not match any field or property of class - 94cool - 博客园

来源: MongoDB查询转对象是出错Element ‘_id’ does not match any field or property of class – 94cool – 博客园

MongoDB查询转对象是出错Element ‘_id’ does not match any field or property of class

 

解决方法:

1、在实体类加:[BsonIgnoreExtraElements]

2、或者定义public ObjectId _id { get; set; }

例子:

[BsonIgnoreExtraElements]

public class BaseData
{
//public ObjectId _id { get; set; }

public string cNo { get; set; }

public string customer { get; set; }

public long batchNo { get; set; }

public DateTime mDate { get; set; }

public string mUser { get; set; }
}

赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏