k98kurz / sqloquent

Python 3+ SQL ORM system inspired by Eloquent
Other
1 stars 0 forks source link

Add `does_not_start_with` to SQB #1

Closed k98kurz closed 7 hours ago

k98kurz commented 1 week ago

Is your feature request related to a problem? Please describe.

The SqlQueryBuilder has a starts_with method but not the inverse does_not_start_with.

Describe the solution you'd like

Add does_not_start_with method to the SqlQueryBuilder class (and equivalent async class).

Describe alternatives you've considered

Not adding this feature. Seems bad mkay.

Additional context

The syntax will be equivalent except that instead of {column} like? the SQL will be {column} not like ?.

k98kurz commented 7 hours ago

Done