Avram::Queryable(T)
Inherits Enumerable
Instance methods
Returns true if at least one of the collection's members is truthy.
[nil, true, 99].any? # => true
[nil, false].any? # => false
([] of Int32).any? # => false
#present?does not consider truthiness of elements.#any?(&)and#any(pattern)allow custom conditions.
NOTE: #any? usually has the same semantics as #present?. They only
differ if the element type can be falsey (i.e. T <= Nil || T <= Pointer || T <= Bool).
It's typically advised to prefer #present? unless these specific truthiness
semantics are required.
Delete the records using the query's where clauses, or all records if no wheres are added.
Returns the number of deleted records as Int64.
# DELETE FROM users WHERE age < 21
UserQuery.new.age.lt(21).delete
Returns the first element in the collection. Raises Enumerable::EmptyError
if the collection is empty.
([1, 2, 3]).first # => 1
([] of Int32).first # raises Enumerable::EmptyError
Returns the first element in the collection.
When the collection is empty, returns nil.
([1, 2, 3]).first? # => 1
([] of Int32).first? # => nil
Returns true if all of the elements of the collection are falsey.
[nil, false].none? # => true
[nil, false, true].none? # => false
It's the opposite of all?.
Run the or block first to grab the last WHERE clause and set its
conjunction to OR. Then call yield to set the next set of ORs
Update the records using the query's where clauses, or all records if no wheres are added.
Returns the number of records updated as Int64.
# Update all comments with the word "spam" as spam
CommentQuery.new.body.ilike("spam").update(spam: true)