Handles inserting content into a database
Inheritance: CollectionRequestBase
Esempio n. 1
0
        /// <summary>
        /// Performs a selection of all fields matching the query
        /// </summary>
        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);
        }