CSMongo.Query.MongoQuery.Delete C# (CSharp) Method

Delete() public method

Performs a selection of all fields matching the query
public Delete ( ) : void
return void
        public void Delete()
        {
            //create the request to use
            DeleteRequest request = new DeleteRequest(this.Collection);
            request.Parameters = this._Parameters;

            //send the delete request
            this.Collection.Database.Connection.SendRequest(request);
        }