• C
    Rollback where.like and where.not_like · 8d02afea
    Carlos Antonio da Silva 提交于
    The real win with these chain methods is where.not, that takes care of
    different scenarios in a graceful way, for instance when the given value
    is nil.
    
        where("author.id != ?", author_to_ignore.id)
        where.not("author.id", author_to_ignore.id)
    
    Both where.like and where.not_like compared to the SQL versions doesn't
    seem to give us that much:
    
        Post.where("title LIKE 'ruby on%'")
        Post.where.like(title: 'ruby on%'")
        Post.where("title NOT LIKE 'ruby on%'")
        Post.where.not_like(title: 'ruby on%'")
    
    Thus Rails is adding where.not, but not where.like/not_like and others.
    8d02afea
可在Tags中查看这些版本中当前仓库的状态.
CHANGELOG.md 36.6 KB