-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove raw SQL usage from the codebase #20
Comments
The issue causes an exception when two exactly the same products are added to the cart. The bug exists due to the fact that we call SQL manually to populate tables during checkout. We generate SQL with the same keys twice for the same products. |
It seems like fixing the cart did not help with removing raw SQL. The main issue still exists. |
…om-the-codebase Bug #20: Remove raw SQL usage from the codebase
Fixed. Requires verification on dev branch. |
Reverted changes - there were issues with checking out with over 3 items in the cart. |
Branch issue-20-Remove_raw_SQL_usage_from_the_codebase created! |
There are some raw SQL queries in the code. We should consider using EF Core instead.
For some reason EF does not work properly in the checkout, we need to find out why and fix it.
The text was updated successfully, but these errors were encountered: