Example #1
0
        public bool DropCollection(string name)
        {
            this.OpenDatabase();

            try
            {
                return(_engine.DropCollection(name));
            }
            finally
            {
                this.CloseDatabase();
            }
        }