Create Operation

To execute a create operation on an MBO, create a new MBO instance, set the MBO attributes, then call the Save() or Create() operation.

Customer cust = new Customer();
cust.Fname  =  "supAdmin" ;
cust.Company_name =   "Sybase";
cust.Phone = "777-8888";
cust.Create();// or cust.Save();
cust.SubmitPending();