Goal
Support JSON column path expressions in Where clauses across the three shipped dialects (data->>'name' style on Postgres, JSON_EXTRACT on MySQL/SQLite). Currently raw JSON access needs WhereRaw.
Acceptance criteria
q.WhereJSON("data.user.name", "=", "Ada") works on all three drivers
- Grammar method renders the dialect-correct expression
- Tests covering each dialect (skip when driver not available)
- Doc paragraph
Goal
Support JSON column path expressions in
Whereclauses across the three shipped dialects (data->>'name'style on Postgres,JSON_EXTRACTon MySQL/SQLite). Currently raw JSON access needsWhereRaw.Acceptance criteria
q.WhereJSON("data.user.name", "=", "Ada")works on all three drivers