Comment on page
Deletes
A delete operation is created by chaining methods together from the root of
wire.data.delete
. These methods populate the properties of a wire.data.TableDelete
object. This object is then passed through the data source to the service provider for processing.To check for service provider support for deleting data, use the
allow.delete
attribute on the DataSource object servicing the query request. const accountService = new wire.data.DataSource("sql", {
Provider: {
Server: "query-server"
}
});
const users = wire.data.delete()
.from("Users")
.where()
.eq("UserName", "jkratz");
accountService.delete(users);
Last modified 1yr ago