public class BaseClass
{
public virtual object Property
}
public class DerivedClass : BaseClass
{
[BsonIgnore]
public override object Property {get;set;}
}
When saving an instance of DerivedClass, Property will still be serialized to the database.