boolean issue on insert #698
morteza-jabarzare
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In line number 75 of QueryBuilder/SqlResult.cs, the code
||||====> return vBool ? "true" : "false";) <====||||
generate incorrect insert SQL statement and should be change to
||||====> return vBool ? "1" : "0";) <====||||
to generate correct statement
Beta Was this translation helpful? Give feedback.
All reactions