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
It is translated to SQL like WHERE (items0_.IsDeleted = 0)
It is incorrect In case I'm using convention which converts camel case to underscores notation (eg. IsDeleted -> IS_DELETED).
So, correct sql should be (WHERE items0_.IS_DELTED = 0)
The text was updated successfully, but these errors were encountered:
I have following mapping:
It is translated to SQL like
WHERE (items0_.IsDeleted = 0)
It is incorrect In case I'm using convention which converts camel case to underscores notation (eg.
IsDeleted
->IS_DELETED
).So, correct sql should be
(WHERE items0_.IS_DELTED = 0)
The text was updated successfully, but these errors were encountered: