CSMongo.Query.MongoQuery.Delete C# (CSharp) Метод

Delete() публичный Метод

Performs a selection of all fields matching the query
public Delete ( ) : void
Результат 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);
        }