You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
Consider entity with property Order and also the same column in the database. KORM will generate query like : SELECT Col1, Col2, Order, Col3 FROM Table. This query will not be executed, because Order is reserved keyword.
All columns in query need to be closed in parentheses. If someone writes whole query on its own, query shoud be write correctly (with parentheses).
The text was updated successfully, but these errors were encountered:
Order
and also the same column in the database. KORM will generate query like :SELECT Col1, Col2, Order, Col3 FROM Table
. This query will not be executed, becauseOrder
is reserved keyword.The text was updated successfully, but these errors were encountered: