Multi threading in WCF RIA Services
- by synergetic
I use WCF RIA Services to update customer database. In domain service:
public void UpdateCustomer(Customer customer)
{
this.ObjectContext.Customers.AttachAsModified(customer);
syncCustomer(customer);
}
After update, a database trigger launches and depending on the columns updated it may insert a new record in CustomerChange table.…