Here is sample code which I used to update customer table.
public void UpdateCustomer() {
SAPDB db = new SAPDB();
SubSonicRepository<Customer> ssr = new SubSonicRepository<Customer>(db);
Customer customer = new Customer();
customer.ID = 5;
customer.CustomerName = "John";
int val = ssr.Update(customer);
}
Please let me know the way I am following is right or wrong? or Is it a error in SubSonic 3?