I'm doing some research for my project where I'm gone have a shopping cart. I been reading some and one way that shopping cart seem to be handled in mvc is to save it to the Profile and later on save it in the db after order is complete, and [Serializable] on the class.
My question is do you see any downside doing it like this with the profile?
EDIT
I think I found a downside saving the cart to profile and that is the migration from anonymous to authenticated user. I'm currently working on Web Application Project so The migration solutions I found don't work (in the global with Profile Common). I found some useful information recently but I want to ask here one thing tho.
The info I found is I can get and set the properties in the profile, but the migration part is still unsolved. Anybody got any tips on this or solution that can point me in the right direction?