This is a design question

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

I have the Customer that is going to order some flowers
So we have two central tables Order and OrderLine
I keep the shopping cart and customer in Session.

I just wonder when is it suitable to write to the Order table and the
OrderLine tabler
is the best practice to do this when the Customer is doing CheckOut

//Tony
 
I have the Customer that is going to order some flowers
So we have two central tables Order and OrderLine
I keep the shopping cart and customer in Session.

I just wonder when is it suitable to write to the Order table and the
OrderLine tabler
is the best practice to do this when the Customer is doing CheckOut

That is more of a business problem than a software problem.

Do you want to have information about non finished orders (for
some type of analysis)?

Yes => save continuously
No => wait to save until purchasing

Arne
 
Back
Top