SuaveMusicStore
SuaveMusicStore copied to clipboard
A wrong snippet in "Anonymous cart"
In the "Anonymous cart" chapter there's the following piece of code:
type CartDetails = DbContext.``public.cartdetailsEntity``
However, I think it's an error and instead it should be:
type Cart = DbContext.``public.cartsEntity``
As the former type had already been defined previously by that time.