enhancementgood first issue
倉庫指標
- Star
- (3,863 star)
- PR 合併指標
- (平均合併 15天 7小時) (30 天內合併 9 個 PR)
描述
Example of usage:
users = await User.filter(first_name__ilike="c%r")
I know this can be done with startswith and endswith, but there are cases where using the LIKE operator is better:
users = await User.filter(first_name__ilike="j_r%")
This would be used to match Jeremy, Jorge, Jordan...