' MongoDB.Bson.BsonElement'不是简单POCO上的属性类

时间:2015-09-20 23:15:43

标签: c# mongodb visual-studio-2012 .net-4.5 mongodb-csharp-2.0

这是我的POCO:

private class Widget
{
    public int Id { get; set; }

    [BsonElement("x")]
    public int X { get; set; }

    public override string ToString()
    {
        return "Id: " + Id + " X: " + X;
    }
}

我在BsonElement属性上收到错误:

enter image description here

我正在使用:
框架:.NET v4.5,
参考文献:MongoDB.Driver.dll v2.0.1,MongoDB.BSON.dll v2.0.1
IDE:Visual Studio Premium 2012

似乎可以为this video中的人工作。

1 个答案:

答案 0 :(得分:7)

找到它。需要此using声明:

using MongoDB.Bson.Serialization.Attributes;