class UserAddressDeliveryPoint::BaseQuery

Included Modules

Direct Known Subclasses

Defined in:

Constructors

Class Method Summary

Instance Method Summary

Macro Summary

Constructor Detail

def self.all : self #

Class Method Detail

def self.any? : Bool #
Description copied from module Enumerable(UserAddressDeliveryPoint)

Returns true if at least one of the collection's members is truthy.

[nil, true, 99].any? # => true
[nil, false].any?    # => false

def self.find(id) #

def self.first : T #
Description copied from module Enumerable(UserAddressDeliveryPoint)

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

def self.first? : T | Nil #
Description copied from module Enumerable(UserAddressDeliveryPoint)

Returns the first element in the collection. When the collection is empty, returns nil.

([1, 2, 3]).first?   # => 1
([] of Int32).first? # => nil

def self.last : T #

def self.last? : T | Nil #

def self.new_with_existing_query(query : Avram::QueryBuilder) #

def self.none? : Bool #
Description copied from module Enumerable(UserAddressDeliveryPoint)

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?.


def self.preload_address(records : Enumerable, preload_query) #

def self.preload_address(record, preload_query) #

def self.preload_address(records : Enumerable) #

def self.preload_address(record) #

def self.preload_address(records : Enumerable, &) #

def self.preload_address(record, &) #

def self.preload_user(records : Enumerable, preload_query) #

def self.preload_user(record, preload_query) #

def self.preload_user(records : Enumerable) #

def self.preload_user(record) #

def self.preload_user(records : Enumerable, &) #

def self.preload_user(record, &) #

def self.truncate(*, cascade : Bool = false) #

Removes all data from a table using the TRUNCATE postgres SQL command.

You should run this command with cascade: true if your table columns are referenced by other foreign key constraints. Use delete instead if you don't want to accidentally delete rows referenced elsewhere.

To delete all data referenced by foreign keys as well, set cascade to true.


Instance Method Detail

def address(&) #

def address_id(value) #

def address_id #

def address_notes(value) #

def address_notes #

def clone #

Returns a copy of self with all instance variables cloned.


def created_at(value) #

def created_at #

def find(id) #

def full_join_address #

def full_join_user #

def hidden(value) #

def hidden #

def id(value) #

def id #

def inner_join_address #

def inner_join_user #

def join_address #

def join_user #

def left_join_address #

def left_join_user #

def preload_address(preload_query : Address::BaseQuery) #

def preload_address #

def preload_address(&) #

def preload_user(preload_query : User::BaseQuery) #

def preload_user #

def preload_user(&) #

def right_join_address #

def right_join_user #

def update(id : Int32 | Avram::Nothing = Avram::Nothing.new, created_at : Time | Avram::Nothing = Avram::Nothing.new, updated_at : Time | Avram::Nothing = Avram::Nothing.new, user_id : User::PrimaryKeyType | Avram::Nothing = Avram::Nothing.new, address_id : Address::PrimaryKeyType | Avram::Nothing = Avram::Nothing.new, address_notes : String | Avram::Nothing = Avram::Nothing.new, hidden : Bool | Avram::Nothing = Avram::Nothing.new) : Int64 #
Description copied from module Avram::Queryable(UserAddressDeliveryPoint)

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)

def updated_at(value) #

def updated_at #

def user(&) #

def user_id(value) #

def user_id #

def where_address(assoc_query : Address::BaseQuery, auto_inner_join : Bool = true) #

def where_user(assoc_query : User::BaseQuery, auto_inner_join : Bool = true) #

Macro Detail

macro generate_criteria_method(name, type) #