Delete Operation

To execute delete operations on an MBO, get an instance of the MBO, set the MBO attributes, then call the Delete() operation.

Customer cust = Customer.FindByPrimaryKey(101);
cust.Delete();