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
Is there any way to switch back to the prop names behavior? I know I can always do like that Where("Type", Type.A.ToString()), but my project stores enums as strings, so I never store enums as integers.
Current behavior
// SELECT * FROM "Table" WHERE "Type" = 'A'
Expected behavior
// SELECT * FROM "Table" WHERE "Type" = 0
The text was updated successfully, but these errors were encountered: