I am using the Official MongoDB C# Drive v0.9.1.26831, but I was wondering given a POCO class, is there anyway to ignore certain properties from getting inserted.
For ex
It looks like the [BsonIgnore] attribute did the job.
public class GroceryList : MongoEntity { public FacebookList Owner { get; set; } [BsonIgnore] public bool IsOwner { get; set; } }