London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Remove payments from orderform

Vote:
 

How do you remove payments from an orderform?

I have tried to use .RemoveAt() and .Clear() but the payments only seem to dissapear for a while and then shows up again.

I have also tried the following which just gives me a SqlException

foreach(Payment payment in orderForm)
{
payment.Delete();
}

orderForm.AcceptChanges();


Do anyone know or have any sugestions? 

#149224
May 26, 2016 14:47
Vote:
 

Hi,

Which SqlException do you have?

it should be

foreach(Payment payment in orderForm.Payments)

by the way

#149236
May 26, 2016 16:11
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.