コード例 #1
0
        public bool DropIndex(string collection, string name)
        {
            this.OpenDatabase();

            try
            {
                return(_engine.DropIndex(collection, name));
            }
            finally
            {
                this.CloseDatabase();
            }
        }