BsonClassMap.RegisterClassMap<Post>(map =>
        {
            map.AutoMap();
            map.SetIsRootClass(true);
            map.AddKnownType(typeof(Poll));
            map.AddKnownType(typeof(Article));
        });