Example #1
0
        public int DeleteMany(string collection, BsonExpression predicate)
        {
            this.OpenDatabase();

            try
            {
                return(_engine.DeleteMany(collection, predicate));
            }
            finally
            {
                this.CloseDatabase();
            }
        }