AddressQuery
class AddressQuery extends ModelCriteria
Base class that represents a query for the 'address' table.
Methods
Initializes internal state of \Thelia\Model\Base\AddressQuery object.
Returns a new ChildAddressQuery object.
Find object by primary key.
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Filter the query by primary key
Filter the query by a list of primary keys
Filter the query on the id column
Filter the query on the label column
Filter the query on the customer_id column
Filter the query on the title_id column
Filter the query on the company column
Filter the query on the firstname column
Filter the query on the lastname column
Filter the query on the address1 column
Filter the query on the address2 column
Filter the query on the address3 column
Filter the query on the zipcode column
Filter the query on the city column
Filter the query on the country_id column
Filter the query on the state_id column
Filter the query on the phone column
Filter the query on the cellphone column
Filter the query on the is_default column
Filter the query on the created_at column
Filter the query on the updated_at column
Filter the query by a related \Thelia\Model\Customer object
Adds a JOIN clause to the query using the Customer relation
Use the Customer relation Customer object
Filter the query by a related \Thelia\Model\CustomerTitle object
Adds a JOIN clause to the query using the CustomerTitle relation
Use the CustomerTitle relation CustomerTitle object
Filter the query by a related \Thelia\Model\Country object
Adds a JOIN clause to the query using the Country relation
Use the Country relation Country object
Filter the query by a related \Thelia\Model\State object
Adds a JOIN clause to the query using the State relation
Use the State relation State object
Filter the query by a related \Thelia\Model\Cart object
Adds a JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
Use the CartRelatedByAddressDeliveryId relation Cart object
Filter the query by a related \Thelia\Model\Cart object
Adds a JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
Use the CartRelatedByAddressInvoiceId relation Cart object
Deletes all rows from the address table.
Performs a DELETE on the database, given a ChildAddress or Criteria object OR a primary key value.
Filter by the latest updated
Filter by the latest created
Order by update date desc
Order by update date asc
Order by create date desc
Order by create date asc
Order by the id column
Order by the label column
Order by the customer_id column
Order by the title_id column
Order by the company column
Order by the firstname column
Order by the lastname column
Order by the address1 column
Order by the address2 column
Order by the address3 column
Order by the zipcode column
Order by the city column
Order by the country_id column
Order by the state_id column
Order by the phone column
Order by the cellphone column
Order by the is_default column
Order by the created_at column
Order by the updated_at column
Group by the id column
Group by the label column
Group by the customer_id column
Group by the title_id column
Group by the company column
Group by the firstname column
Group by the lastname column
Group by the address1 column
Group by the address2 column
Group by the address3 column
Group by the zipcode column
Group by the city column
Group by the country_id column
Group by the state_id column
Group by the phone column
Group by the cellphone column
Group by the is_default column
Group by the created_at column
Group by the updated_at column
Adds a LEFT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Adds a INNER JOIN clause to the query
Adds a LEFT JOIN clause to the query using the Customer relation
Adds a RIGHT JOIN clause to the query using the Customer relation
Adds a INNER JOIN clause to the query using the Customer relation
Adds a LEFT JOIN clause to the query using the CustomerTitle relation
Adds a RIGHT JOIN clause to the query using the CustomerTitle relation
Adds a INNER JOIN clause to the query using the CustomerTitle relation
Adds a LEFT JOIN clause to the query using the Country relation
Adds a RIGHT JOIN clause to the query using the Country relation
Adds a INNER JOIN clause to the query using the Country relation
Adds a LEFT JOIN clause to the query using the State relation
Adds a RIGHT JOIN clause to the query using the State relation
Adds a INNER JOIN clause to the query using the State relation
Adds a LEFT JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
Adds a RIGHT JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
Adds a INNER JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
Adds a LEFT JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
Adds a RIGHT JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
Adds a INNER JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
Return the first ChildAddress matching the query
Return the first ChildAddress matching the query, or a new ChildAddress object populated from the query conditions when no match is found
Return the first ChildAddress filtered by the id column
Return the first ChildAddress filtered by the label column
Return the first ChildAddress filtered by the customer_id column
Return the first ChildAddress filtered by the title_id column
Return the first ChildAddress filtered by the company column
Return the first ChildAddress filtered by the firstname column
Return the first ChildAddress filtered by the lastname column
Return the first ChildAddress filtered by the address1 column
Return the first ChildAddress filtered by the address2 column
Return the first ChildAddress filtered by the address3 column
Return the first ChildAddress filtered by the zipcode column
Return the first ChildAddress filtered by the city column
Return the first ChildAddress filtered by the country_id column
Return the first ChildAddress filtered by the state_id column
Return the first ChildAddress filtered by the phone column
Return the first ChildAddress filtered by the cellphone column
Return the first ChildAddress filtered by the is_default column
Return the first ChildAddress filtered by the created_at column
Return the first ChildAddress filtered by the updated_at column
Return ChildAddress objects filtered by the id column
Return ChildAddress objects filtered by the label column
Return ChildAddress objects filtered by the customer_id column
Return ChildAddress objects filtered by the title_id column
Return ChildAddress objects filtered by the company column
Return ChildAddress objects filtered by the firstname column
Return ChildAddress objects filtered by the lastname column
Return ChildAddress objects filtered by the address1 column
Return ChildAddress objects filtered by the address2 column
Return ChildAddress objects filtered by the address3 column
Return ChildAddress objects filtered by the zipcode column
Return ChildAddress objects filtered by the city column
Return ChildAddress objects filtered by the country_id column
Return ChildAddress objects filtered by the state_id column
Return ChildAddress objects filtered by the phone column
Return ChildAddress objects filtered by the cellphone column
Return ChildAddress objects filtered by the is_default column
Return ChildAddress objects filtered by the created_at column
Return ChildAddress objects filtered by the updated_at column
Details
at line 146
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\Address',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\AddressQuery object.
at line 159
static
AddressQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildAddressQuery object.
at line 189
Address|array|mixed
findPk(
mixed $key,
ConnectionInterface $con = null)
Find object by primary key.
Propel uses the instance pool to skip the database if the object exists. Go fast if the query is untouched.
$obj = $c->findPk(12, $con);
at line 271
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
at line 292
AddressQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
at line 305
AddressQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
at line 329
AddressQuery
filterById(
mixed $id = null,
string $comparison = null)
Filter the query on the id column
Example usage:
$query->filterById(1234); // WHERE id = 1234
$query->filterById(array(12, 34)); // WHERE id IN (12, 34)
$query->filterById(array('min' => 12)); // WHERE id > 12
at line 367
AddressQuery
filterByLabel(
string $label = null,
string $comparison = null)
Filter the query on the label column
Example usage:
$query->filterByLabel('fooValue'); // WHERE label = 'fooValue'
$query->filterByLabel('%fooValue%'); // WHERE label LIKE '%fooValue%'
at line 401
AddressQuery
filterByCustomerId(
mixed $customerId = null,
string $comparison = null)
Filter the query on the customer_id column
Example usage:
$query->filterByCustomerId(1234); // WHERE customerid = 1234
$query->filterByCustomerId(array(12, 34)); // WHERE customerid IN (12, 34)
$query->filterByCustomerId(array('min' => 12)); // WHERE customer_id > 12
at line 444
AddressQuery
filterByTitleId(
mixed $titleId = null,
string $comparison = null)
Filter the query on the title_id column
Example usage:
$query->filterByTitleId(1234); // WHERE titleid = 1234
$query->filterByTitleId(array(12, 34)); // WHERE titleid IN (12, 34)
$query->filterByTitleId(array('min' => 12)); // WHERE title_id > 12
at line 482
AddressQuery
filterByCompany(
string $company = null,
string $comparison = null)
Filter the query on the company column
Example usage:
$query->filterByCompany('fooValue'); // WHERE company = 'fooValue'
$query->filterByCompany('%fooValue%'); // WHERE company LIKE '%fooValue%'
at line 511
AddressQuery
filterByFirstname(
string $firstname = null,
string $comparison = null)
Filter the query on the firstname column
Example usage:
$query->filterByFirstname('fooValue'); // WHERE firstname = 'fooValue'
$query->filterByFirstname('%fooValue%'); // WHERE firstname LIKE '%fooValue%'
at line 540
AddressQuery
filterByLastname(
string $lastname = null,
string $comparison = null)
Filter the query on the lastname column
Example usage:
$query->filterByLastname('fooValue'); // WHERE lastname = 'fooValue'
$query->filterByLastname('%fooValue%'); // WHERE lastname LIKE '%fooValue%'
at line 569
AddressQuery
filterByAddress1(
string $address1 = null,
string $comparison = null)
Filter the query on the address1 column
Example usage:
$query->filterByAddress1('fooValue'); // WHERE address1 = 'fooValue'
$query->filterByAddress1('%fooValue%'); // WHERE address1 LIKE '%fooValue%'
at line 598
AddressQuery
filterByAddress2(
string $address2 = null,
string $comparison = null)
Filter the query on the address2 column
Example usage:
$query->filterByAddress2('fooValue'); // WHERE address2 = 'fooValue'
$query->filterByAddress2('%fooValue%'); // WHERE address2 LIKE '%fooValue%'
at line 627
AddressQuery
filterByAddress3(
string $address3 = null,
string $comparison = null)
Filter the query on the address3 column
Example usage:
$query->filterByAddress3('fooValue'); // WHERE address3 = 'fooValue'
$query->filterByAddress3('%fooValue%'); // WHERE address3 LIKE '%fooValue%'
at line 656
AddressQuery
filterByZipcode(
string $zipcode = null,
string $comparison = null)
Filter the query on the zipcode column
Example usage:
$query->filterByZipcode('fooValue'); // WHERE zipcode = 'fooValue'
$query->filterByZipcode('%fooValue%'); // WHERE zipcode LIKE '%fooValue%'
at line 685
AddressQuery
filterByCity(
string $city = null,
string $comparison = null)
Filter the query on the city column
Example usage:
$query->filterByCity('fooValue'); // WHERE city = 'fooValue'
$query->filterByCity('%fooValue%'); // WHERE city LIKE '%fooValue%'
at line 719
AddressQuery
filterByCountryId(
mixed $countryId = null,
string $comparison = null)
Filter the query on the country_id column
Example usage:
$query->filterByCountryId(1234); // WHERE countryid = 1234
$query->filterByCountryId(array(12, 34)); // WHERE countryid IN (12, 34)
$query->filterByCountryId(array('min' => 12)); // WHERE country_id > 12
at line 762
AddressQuery
filterByStateId(
mixed $stateId = null,
string $comparison = null)
Filter the query on the state_id column
Example usage:
$query->filterByStateId(1234); // WHERE stateid = 1234
$query->filterByStateId(array(12, 34)); // WHERE stateid IN (12, 34)
$query->filterByStateId(array('min' => 12)); // WHERE state_id > 12
at line 800
AddressQuery
filterByPhone(
string $phone = null,
string $comparison = null)
Filter the query on the phone column
Example usage:
$query->filterByPhone('fooValue'); // WHERE phone = 'fooValue'
$query->filterByPhone('%fooValue%'); // WHERE phone LIKE '%fooValue%'
at line 829
AddressQuery
filterByCellphone(
string $cellphone = null,
string $comparison = null)
Filter the query on the cellphone column
Example usage:
$query->filterByCellphone('fooValue'); // WHERE cellphone = 'fooValue'
$query->filterByCellphone('%fooValue%'); // WHERE cellphone LIKE '%fooValue%'
at line 861
AddressQuery
filterByIsDefault(
mixed $isDefault = null,
string $comparison = null)
Filter the query on the is_default column
Example usage:
$query->filterByIsDefault(1234); // WHERE isdefault = 1234
$query->filterByIsDefault(array(12, 34)); // WHERE isdefault IN (12, 34)
$query->filterByIsDefault(array('min' => 12)); // WHERE is_default > 12
at line 904
AddressQuery
filterByCreatedAt(
mixed $createdAt = null,
string $comparison = null)
Filter the query on the created_at column
Example usage:
$query->filterByCreatedAt('2011-03-14'); // WHERE createdat = '2011-03-14'
$query->filterByCreatedAt('now'); // WHERE createdat = '2011-03-14'
$query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'
at line 947
AddressQuery
filterByUpdatedAt(
mixed $updatedAt = null,
string $comparison = null)
Filter the query on the updated_at column
Example usage:
$query->filterByUpdatedAt('2011-03-14'); // WHERE updatedat = '2011-03-14'
$query->filterByUpdatedAt('now'); // WHERE updatedat = '2011-03-14'
$query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'
at line 978
AddressQuery
filterByCustomer(
Customer|ObjectCollection $customer,
string $comparison = null)
Filter the query by a related \Thelia\Model\Customer object
at line 1003
AddressQuery
joinCustomer(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Customer relation
at line 1038
CustomerQuery
useCustomerQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Customer relation Customer object
at line 1053
AddressQuery
filterByCustomerTitle(
CustomerTitle|ObjectCollection $customerTitle,
string $comparison = null)
Filter the query by a related \Thelia\Model\CustomerTitle object
at line 1078
AddressQuery
joinCustomerTitle(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CustomerTitle relation
at line 1113
CustomerTitleQuery
useCustomerTitleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CustomerTitle relation CustomerTitle object
at line 1128
AddressQuery
filterByCountry(
Country|ObjectCollection $country,
string $comparison = null)
Filter the query by a related \Thelia\Model\Country object
at line 1153
AddressQuery
joinCountry(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Country relation
at line 1188
CountryQuery
useCountryQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Country relation Country object
at line 1203
AddressQuery
filterByState(
State|ObjectCollection $state,
string $comparison = null)
Filter the query by a related \Thelia\Model\State object
at line 1228
AddressQuery
joinState(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the State relation
at line 1263
StateQuery
useStateQuery(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the State relation State object
at line 1278
AddressQuery
filterByCartRelatedByAddressDeliveryId(
Cart|ObjectCollection $cart,
string $comparison = null)
Filter the query by a related \Thelia\Model\Cart object
at line 1301
AddressQuery
joinCartRelatedByAddressDeliveryId(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
at line 1336
CartQuery
useCartRelatedByAddressDeliveryIdQuery(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the CartRelatedByAddressDeliveryId relation Cart object
at line 1351
AddressQuery
filterByCartRelatedByAddressInvoiceId(
Cart|ObjectCollection $cart,
string $comparison = null)
Filter the query by a related \Thelia\Model\Cart object
at line 1374
AddressQuery
joinCartRelatedByAddressInvoiceId(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
at line 1409
CartQuery
useCartRelatedByAddressInvoiceIdQuery(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the CartRelatedByAddressInvoiceId relation Cart object
at line 1423
AddressQuery
prune(
Address $address = null)
Exclude object from result
at line 1438
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the address table.
at line 1475
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildAddress or Criteria object OR a primary key value.
at line 1516
AddressQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
at line 1528
AddressQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
at line 1538
AddressQuery
lastUpdatedFirst()
Order by update date desc
at line 1548
AddressQuery
firstUpdatedFirst()
Order by update date asc
at line 1558
AddressQuery
lastCreatedFirst()
Order by create date desc
at line 1568
AddressQuery
firstCreatedFirst()
Order by create date asc
at line 136
ChildAddressQuery
orderById($order = Criteria::ASC)
Order by the id column
at line 136
ChildAddressQuery
orderByLabel($order = Criteria::ASC)
Order by the label column
at line 136
ChildAddressQuery
orderByCustomerId($order = Criteria::ASC)
Order by the customer_id column
at line 136
ChildAddressQuery
orderByTitleId($order = Criteria::ASC)
Order by the title_id column
at line 136
ChildAddressQuery
orderByCompany($order = Criteria::ASC)
Order by the company column
at line 136
ChildAddressQuery
orderByFirstname($order = Criteria::ASC)
Order by the firstname column
at line 136
ChildAddressQuery
orderByLastname($order = Criteria::ASC)
Order by the lastname column
at line 136
ChildAddressQuery
orderByAddress1($order = Criteria::ASC)
Order by the address1 column
at line 136
ChildAddressQuery
orderByAddress2($order = Criteria::ASC)
Order by the address2 column
at line 136
ChildAddressQuery
orderByAddress3($order = Criteria::ASC)
Order by the address3 column
at line 136
ChildAddressQuery
orderByZipcode($order = Criteria::ASC)
Order by the zipcode column
at line 136
ChildAddressQuery
orderByCity($order = Criteria::ASC)
Order by the city column
at line 136
ChildAddressQuery
orderByCountryId($order = Criteria::ASC)
Order by the country_id column
at line 136
ChildAddressQuery
orderByStateId($order = Criteria::ASC)
Order by the state_id column
at line 136
ChildAddressQuery
orderByPhone($order = Criteria::ASC)
Order by the phone column
at line 136
ChildAddressQuery
orderByCellphone($order = Criteria::ASC)
Order by the cellphone column
at line 136
ChildAddressQuery
orderByIsDefault($order = Criteria::ASC)
Order by the is_default column
at line 136
ChildAddressQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
at line 136
ChildAddressQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
at line 136
ChildAddressQuery
groupById()
Group by the id column
at line 136
ChildAddressQuery
groupByLabel()
Group by the label column
at line 136
ChildAddressQuery
groupByCustomerId()
Group by the customer_id column
at line 136
ChildAddressQuery
groupByTitleId()
Group by the title_id column
at line 136
ChildAddressQuery
groupByCompany()
Group by the company column
at line 136
ChildAddressQuery
groupByFirstname()
Group by the firstname column
at line 136
ChildAddressQuery
groupByLastname()
Group by the lastname column
at line 136
ChildAddressQuery
groupByAddress1()
Group by the address1 column
at line 136
ChildAddressQuery
groupByAddress2()
Group by the address2 column
at line 136
ChildAddressQuery
groupByAddress3()
Group by the address3 column
at line 136
ChildAddressQuery
groupByZipcode()
Group by the zipcode column
at line 136
ChildAddressQuery
groupByCity()
Group by the city column
at line 136
ChildAddressQuery
groupByCountryId()
Group by the country_id column
at line 136
ChildAddressQuery
groupByStateId()
Group by the state_id column
at line 136
ChildAddressQuery
groupByPhone()
Group by the phone column
at line 136
ChildAddressQuery
groupByCellphone()
Group by the cellphone column
at line 136
ChildAddressQuery
groupByIsDefault()
Group by the is_default column
at line 136
ChildAddressQuery
groupByCreatedAt()
Group by the created_at column
at line 136
ChildAddressQuery
groupByUpdatedAt()
Group by the updated_at column
at line 136
ChildAddressQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
at line 136
ChildAddressQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
at line 136
ChildAddressQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
at line 136
ChildAddressQuery
leftJoinCustomer($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Customer relation
at line 136
ChildAddressQuery
rightJoinCustomer($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Customer relation
at line 136
ChildAddressQuery
innerJoinCustomer($relationAlias = null)
Adds a INNER JOIN clause to the query using the Customer relation
at line 136
ChildAddressQuery
leftJoinCustomerTitle($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CustomerTitle relation
at line 136
ChildAddressQuery
rightJoinCustomerTitle($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CustomerTitle relation
at line 136
ChildAddressQuery
innerJoinCustomerTitle($relationAlias = null)
Adds a INNER JOIN clause to the query using the CustomerTitle relation
at line 136
ChildAddressQuery
leftJoinCountry($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Country relation
at line 136
ChildAddressQuery
rightJoinCountry($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Country relation
at line 136
ChildAddressQuery
innerJoinCountry($relationAlias = null)
Adds a INNER JOIN clause to the query using the Country relation
at line 136
ChildAddressQuery
leftJoinState($relationAlias = null)
Adds a LEFT JOIN clause to the query using the State relation
at line 136
ChildAddressQuery
rightJoinState($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the State relation
at line 136
ChildAddressQuery
innerJoinState($relationAlias = null)
Adds a INNER JOIN clause to the query using the State relation
at line 136
ChildAddressQuery
leftJoinCartRelatedByAddressDeliveryId($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
at line 136
ChildAddressQuery
rightJoinCartRelatedByAddressDeliveryId($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
at line 136
ChildAddressQuery
innerJoinCartRelatedByAddressDeliveryId($relationAlias = null)
Adds a INNER JOIN clause to the query using the CartRelatedByAddressDeliveryId relation
at line 136
ChildAddressQuery
leftJoinCartRelatedByAddressInvoiceId($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
at line 136
ChildAddressQuery
rightJoinCartRelatedByAddressInvoiceId($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
at line 136
ChildAddressQuery
innerJoinCartRelatedByAddressInvoiceId($relationAlias = null)
Adds a INNER JOIN clause to the query using the CartRelatedByAddressInvoiceId relation
at line 136
ChildAddress
findOne(
ConnectionInterface $con = null)
Return the first ChildAddress matching the query
at line 136
ChildAddress
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildAddress matching the query, or a new ChildAddress object populated from the query conditions when no match is found
at line 136
ChildAddress
findOneById(
int $id)
Return the first ChildAddress filtered by the id column
at line 136
ChildAddress
findOneByLabel(
string $label)
Return the first ChildAddress filtered by the label column
at line 136
ChildAddress
findOneByCustomerId(
int $customer_id)
Return the first ChildAddress filtered by the customer_id column
at line 136
ChildAddress
findOneByTitleId(
int $title_id)
Return the first ChildAddress filtered by the title_id column
at line 136
ChildAddress
findOneByCompany(
string $company)
Return the first ChildAddress filtered by the company column
at line 136
ChildAddress
findOneByFirstname(
string $firstname)
Return the first ChildAddress filtered by the firstname column
at line 136
ChildAddress
findOneByLastname(
string $lastname)
Return the first ChildAddress filtered by the lastname column
at line 136
ChildAddress
findOneByAddress1(
string $address1)
Return the first ChildAddress filtered by the address1 column
at line 136
ChildAddress
findOneByAddress2(
string $address2)
Return the first ChildAddress filtered by the address2 column
at line 136
ChildAddress
findOneByAddress3(
string $address3)
Return the first ChildAddress filtered by the address3 column
at line 136
ChildAddress
findOneByZipcode(
string $zipcode)
Return the first ChildAddress filtered by the zipcode column
at line 136
ChildAddress
findOneByCity(
string $city)
Return the first ChildAddress filtered by the city column
at line 136
ChildAddress
findOneByCountryId(
int $country_id)
Return the first ChildAddress filtered by the country_id column
at line 136
ChildAddress
findOneByStateId(
int $state_id)
Return the first ChildAddress filtered by the state_id column
at line 136
ChildAddress
findOneByPhone(
string $phone)
Return the first ChildAddress filtered by the phone column
at line 136
ChildAddress
findOneByCellphone(
string $cellphone)
Return the first ChildAddress filtered by the cellphone column
at line 136
ChildAddress
findOneByIsDefault(
int $is_default)
Return the first ChildAddress filtered by the is_default column
at line 136
ChildAddress
findOneByCreatedAt(
string $created_at)
Return the first ChildAddress filtered by the created_at column
at line 136
ChildAddress
findOneByUpdatedAt(
string $updated_at)
Return the first ChildAddress filtered by the updated_at column
at line 136
array
findById(
int $id)
Return ChildAddress objects filtered by the id column
at line 136
array
findByLabel(
string $label)
Return ChildAddress objects filtered by the label column
at line 136
array
findByCustomerId(
int $customer_id)
Return ChildAddress objects filtered by the customer_id column
at line 136
array
findByTitleId(
int $title_id)
Return ChildAddress objects filtered by the title_id column
at line 136
array
findByCompany(
string $company)
Return ChildAddress objects filtered by the company column
at line 136
array
findByFirstname(
string $firstname)
Return ChildAddress objects filtered by the firstname column
at line 136
array
findByLastname(
string $lastname)
Return ChildAddress objects filtered by the lastname column
at line 136
array
findByAddress1(
string $address1)
Return ChildAddress objects filtered by the address1 column
at line 136
array
findByAddress2(
string $address2)
Return ChildAddress objects filtered by the address2 column
at line 136
array
findByAddress3(
string $address3)
Return ChildAddress objects filtered by the address3 column
at line 136
array
findByZipcode(
string $zipcode)
Return ChildAddress objects filtered by the zipcode column
at line 136
array
findByCity(
string $city)
Return ChildAddress objects filtered by the city column
at line 136
array
findByCountryId(
int $country_id)
Return ChildAddress objects filtered by the country_id column
at line 136
array
findByStateId(
int $state_id)
Return ChildAddress objects filtered by the state_id column
at line 136
array
findByPhone(
string $phone)
Return ChildAddress objects filtered by the phone column
at line 136
array
findByCellphone(
string $cellphone)
Return ChildAddress objects filtered by the cellphone column
at line 136
array
findByIsDefault(
int $is_default)
Return ChildAddress objects filtered by the is_default column
at line 136
array
findByCreatedAt(
string $created_at)
Return ChildAddress objects filtered by the created_at column
at line 136
array
findByUpdatedAt(
string $updated_at)
Return ChildAddress objects filtered by the updated_at column