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);
        }