OrderAddressQuery
class OrderAddressQuery extends ModelCriteria
Base class that represents a query for the 'order_address' table.
Methods
Initializes internal state of \Thelia\Model\Base\OrderAddressQuery object.
Returns a new ChildOrderAddressQuery 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 customertitleid 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 phone column
Filter the query on the cellphone column
Filter the query on the country_id column
Filter the query on the state_id 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\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\Order object
Adds a JOIN clause to the query using the OrderRelatedByInvoiceOrderAddressId relation
Use the OrderRelatedByInvoiceOrderAddressId relation Order object
Filter the query by a related \Thelia\Model\Order object
Adds a JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
Use the OrderRelatedByDeliveryOrderAddressId relation Order object
Deletes all rows from the order_address table.
Performs a DELETE on the database, given a ChildOrderAddress 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 customertitleid 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 phone column
Order by the cellphone column
Order by the country_id column
Order by the state_id column
Order by the created_at column
Order by the updated_at column
Group by the id column
Group by the customertitleid 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 phone column
Group by the cellphone column
Group by the country_id column
Group by the state_id 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 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 OrderRelatedByInvoiceOrderAddressId relation
Adds a RIGHT JOIN clause to the query using the OrderRelatedByInvoiceOrderAddressId relation
Adds a INNER JOIN clause to the query using the OrderRelatedByInvoiceOrderAddressId relation
Adds a LEFT JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
Adds a RIGHT JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
Adds a INNER JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
Return the first ChildOrderAddress matching the query
Return the first ChildOrderAddress matching the query, or a new ChildOrderAddress object populated from the query conditions when no match is found
Return the first ChildOrderAddress filtered by the id column
Return the first ChildOrderAddress filtered by the customertitleid column
Return the first ChildOrderAddress filtered by the company column
Return the first ChildOrderAddress filtered by the firstname column
Return the first ChildOrderAddress filtered by the lastname column
Return the first ChildOrderAddress filtered by the address1 column
Return the first ChildOrderAddress filtered by the address2 column
Return the first ChildOrderAddress filtered by the address3 column
Return the first ChildOrderAddress filtered by the zipcode column
Return the first ChildOrderAddress filtered by the city column
Return the first ChildOrderAddress filtered by the phone column
Return the first ChildOrderAddress filtered by the cellphone column
Return the first ChildOrderAddress filtered by the country_id column
Return the first ChildOrderAddress filtered by the state_id column
Return the first ChildOrderAddress filtered by the created_at column
Return the first ChildOrderAddress filtered by the updated_at column
Return ChildOrderAddress objects filtered by the id column
Return ChildOrderAddress objects filtered by the customertitleid column
Return ChildOrderAddress objects filtered by the company column
Return ChildOrderAddress objects filtered by the firstname column
Return ChildOrderAddress objects filtered by the lastname column
Return ChildOrderAddress objects filtered by the address1 column
Return ChildOrderAddress objects filtered by the address2 column
Return ChildOrderAddress objects filtered by the address3 column
Return ChildOrderAddress objects filtered by the zipcode column
Return ChildOrderAddress objects filtered by the city column
Return ChildOrderAddress objects filtered by the phone column
Return ChildOrderAddress objects filtered by the cellphone column
Return ChildOrderAddress objects filtered by the country_id column
Return ChildOrderAddress objects filtered by the state_id column
Return ChildOrderAddress objects filtered by the created_at column
Return ChildOrderAddress objects filtered by the updated_at column
Details
at line 130
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\OrderAddress',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\OrderAddressQuery object.
at line 143
static
OrderAddressQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildOrderAddressQuery object.
at line 173
OrderAddress|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 255
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
at line 276
OrderAddressQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
at line 289
OrderAddressQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
at line 313
OrderAddressQuery
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 356
OrderAddressQuery
filterByCustomerTitleId(
mixed $customerTitleId = null,
string $comparison = null)
Filter the query on the customertitleid column
Example usage:
$query->filterByCustomerTitleId(1234); // WHERE customertitleid = 1234
$query->filterByCustomerTitleId(array(12, 34)); // WHERE customertitleid IN (12, 34)
$query->filterByCustomerTitleId(array('min' => 12)); // WHERE customertitleid > 12
at line 394
OrderAddressQuery
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 423
OrderAddressQuery
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 452
OrderAddressQuery
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 481
OrderAddressQuery
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 510
OrderAddressQuery
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 539
OrderAddressQuery
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 568
OrderAddressQuery
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 597
OrderAddressQuery
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 626
OrderAddressQuery
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 655
OrderAddressQuery
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 689
OrderAddressQuery
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 732
OrderAddressQuery
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 775
OrderAddressQuery
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 818
OrderAddressQuery
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 849
OrderAddressQuery
filterByCustomerTitle(
CustomerTitle|ObjectCollection $customerTitle,
string $comparison = null)
Filter the query by a related \Thelia\Model\CustomerTitle object
at line 874
OrderAddressQuery
joinCustomerTitle(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the CustomerTitle relation
at line 909
CustomerTitleQuery
useCustomerTitleQuery(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the CustomerTitle relation CustomerTitle object
at line 924
OrderAddressQuery
filterByCountry(
Country|ObjectCollection $country,
string $comparison = null)
Filter the query by a related \Thelia\Model\Country object
at line 949
OrderAddressQuery
joinCountry(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Country relation
at line 984
CountryQuery
useCountryQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Country relation Country object
at line 999
OrderAddressQuery
filterByState(
State|ObjectCollection $state,
string $comparison = null)
Filter the query by a related \Thelia\Model\State object
at line 1024
OrderAddressQuery
joinState(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Adds a JOIN clause to the query using the State relation
at line 1059
StateQuery
useStateQuery(
string $relationAlias = null,
string $joinType = Criteria::LEFT_JOIN)
Use the State relation State object
at line 1074
OrderAddressQuery
filterByOrderRelatedByInvoiceOrderAddressId(
Order|ObjectCollection $order,
string $comparison = null)
Filter the query by a related \Thelia\Model\Order object
at line 1097
OrderAddressQuery
joinOrderRelatedByInvoiceOrderAddressId(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderRelatedByInvoiceOrderAddressId relation
at line 1132
OrderQuery
useOrderRelatedByInvoiceOrderAddressIdQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderRelatedByInvoiceOrderAddressId relation Order object
at line 1147
OrderAddressQuery
filterByOrderRelatedByDeliveryOrderAddressId(
Order|ObjectCollection $order,
string $comparison = null)
Filter the query by a related \Thelia\Model\Order object
at line 1170
OrderAddressQuery
joinOrderRelatedByDeliveryOrderAddressId(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
at line 1205
OrderQuery
useOrderRelatedByDeliveryOrderAddressIdQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderRelatedByDeliveryOrderAddressId relation Order object
at line 1219
OrderAddressQuery
prune(
OrderAddress $orderAddress = null)
Exclude object from result
at line 1234
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the order_address table.
at line 1271
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildOrderAddress or Criteria object OR a primary key value.
at line 1312
OrderAddressQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
at line 1324
OrderAddressQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
at line 1334
OrderAddressQuery
lastUpdatedFirst()
Order by update date desc
at line 1344
OrderAddressQuery
firstUpdatedFirst()
Order by update date asc
at line 1354
OrderAddressQuery
lastCreatedFirst()
Order by create date desc
at line 1364
OrderAddressQuery
firstCreatedFirst()
Order by create date asc
at line 120
ChildOrderAddressQuery
orderById($order = Criteria::ASC)
Order by the id column
at line 120
ChildOrderAddressQuery
orderByCustomerTitleId($order = Criteria::ASC)
Order by the customertitleid column
at line 120
ChildOrderAddressQuery
orderByCompany($order = Criteria::ASC)
Order by the company column
at line 120
ChildOrderAddressQuery
orderByFirstname($order = Criteria::ASC)
Order by the firstname column
at line 120
ChildOrderAddressQuery
orderByLastname($order = Criteria::ASC)
Order by the lastname column
at line 120
ChildOrderAddressQuery
orderByAddress1($order = Criteria::ASC)
Order by the address1 column
at line 120
ChildOrderAddressQuery
orderByAddress2($order = Criteria::ASC)
Order by the address2 column
at line 120
ChildOrderAddressQuery
orderByAddress3($order = Criteria::ASC)
Order by the address3 column
at line 120
ChildOrderAddressQuery
orderByZipcode($order = Criteria::ASC)
Order by the zipcode column
at line 120
ChildOrderAddressQuery
orderByCity($order = Criteria::ASC)
Order by the city column
at line 120
ChildOrderAddressQuery
orderByPhone($order = Criteria::ASC)
Order by the phone column
at line 120
ChildOrderAddressQuery
orderByCellphone($order = Criteria::ASC)
Order by the cellphone column
at line 120
ChildOrderAddressQuery
orderByCountryId($order = Criteria::ASC)
Order by the country_id column
at line 120
ChildOrderAddressQuery
orderByStateId($order = Criteria::ASC)
Order by the state_id column
at line 120
ChildOrderAddressQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
at line 120
ChildOrderAddressQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
at line 120
ChildOrderAddressQuery
groupById()
Group by the id column
at line 120
ChildOrderAddressQuery
groupByCustomerTitleId()
Group by the customertitleid column
at line 120
ChildOrderAddressQuery
groupByCompany()
Group by the company column
at line 120
ChildOrderAddressQuery
groupByFirstname()
Group by the firstname column
at line 120
ChildOrderAddressQuery
groupByLastname()
Group by the lastname column
at line 120
ChildOrderAddressQuery
groupByAddress1()
Group by the address1 column
at line 120
ChildOrderAddressQuery
groupByAddress2()
Group by the address2 column
at line 120
ChildOrderAddressQuery
groupByAddress3()
Group by the address3 column
at line 120
ChildOrderAddressQuery
groupByZipcode()
Group by the zipcode column
at line 120
ChildOrderAddressQuery
groupByCity()
Group by the city column
at line 120
ChildOrderAddressQuery
groupByPhone()
Group by the phone column
at line 120
ChildOrderAddressQuery
groupByCellphone()
Group by the cellphone column
at line 120
ChildOrderAddressQuery
groupByCountryId()
Group by the country_id column
at line 120
ChildOrderAddressQuery
groupByStateId()
Group by the state_id column
at line 120
ChildOrderAddressQuery
groupByCreatedAt()
Group by the created_at column
at line 120
ChildOrderAddressQuery
groupByUpdatedAt()
Group by the updated_at column
at line 120
ChildOrderAddressQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
at line 120
ChildOrderAddressQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
at line 120
ChildOrderAddressQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
at line 120
ChildOrderAddressQuery
leftJoinCustomerTitle($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CustomerTitle relation
at line 120
ChildOrderAddressQuery
rightJoinCustomerTitle($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CustomerTitle relation
at line 120
ChildOrderAddressQuery
innerJoinCustomerTitle($relationAlias = null)
Adds a INNER JOIN clause to the query using the CustomerTitle relation
at line 120
ChildOrderAddressQuery
leftJoinCountry($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Country relation
at line 120
ChildOrderAddressQuery
rightJoinCountry($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Country relation
at line 120
ChildOrderAddressQuery
innerJoinCountry($relationAlias = null)
Adds a INNER JOIN clause to the query using the Country relation
at line 120
ChildOrderAddressQuery
leftJoinState($relationAlias = null)
Adds a LEFT JOIN clause to the query using the State relation
at line 120
ChildOrderAddressQuery
rightJoinState($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the State relation
at line 120
ChildOrderAddressQuery
innerJoinState($relationAlias = null)
Adds a INNER JOIN clause to the query using the State relation
at line 120
ChildOrderAddressQuery
leftJoinOrderRelatedByInvoiceOrderAddressId($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderRelatedByInvoiceOrderAddressId relation
at line 120
ChildOrderAddressQuery
rightJoinOrderRelatedByInvoiceOrderAddressId($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderRelatedByInvoiceOrderAddressId relation
at line 120
ChildOrderAddressQuery
innerJoinOrderRelatedByInvoiceOrderAddressId($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderRelatedByInvoiceOrderAddressId relation
at line 120
ChildOrderAddressQuery
leftJoinOrderRelatedByDeliveryOrderAddressId($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
at line 120
ChildOrderAddressQuery
rightJoinOrderRelatedByDeliveryOrderAddressId($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
at line 120
ChildOrderAddressQuery
innerJoinOrderRelatedByDeliveryOrderAddressId($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderRelatedByDeliveryOrderAddressId relation
at line 120
ChildOrderAddress
findOne(
ConnectionInterface $con = null)
Return the first ChildOrderAddress matching the query
at line 120
ChildOrderAddress
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildOrderAddress matching the query, or a new ChildOrderAddress object populated from the query conditions when no match is found
at line 120
ChildOrderAddress
findOneById(
int $id)
Return the first ChildOrderAddress filtered by the id column
at line 120
ChildOrderAddress
findOneByCustomerTitleId(
int $customer_title_id)
Return the first ChildOrderAddress filtered by the customertitleid column
at line 120
ChildOrderAddress
findOneByCompany(
string $company)
Return the first ChildOrderAddress filtered by the company column
at line 120
ChildOrderAddress
findOneByFirstname(
string $firstname)
Return the first ChildOrderAddress filtered by the firstname column
at line 120
ChildOrderAddress
findOneByLastname(
string $lastname)
Return the first ChildOrderAddress filtered by the lastname column
at line 120
ChildOrderAddress
findOneByAddress1(
string $address1)
Return the first ChildOrderAddress filtered by the address1 column
at line 120
ChildOrderAddress
findOneByAddress2(
string $address2)
Return the first ChildOrderAddress filtered by the address2 column
at line 120
ChildOrderAddress
findOneByAddress3(
string $address3)
Return the first ChildOrderAddress filtered by the address3 column
at line 120
ChildOrderAddress
findOneByZipcode(
string $zipcode)
Return the first ChildOrderAddress filtered by the zipcode column
at line 120
ChildOrderAddress
findOneByCity(
string $city)
Return the first ChildOrderAddress filtered by the city column
at line 120
ChildOrderAddress
findOneByPhone(
string $phone)
Return the first ChildOrderAddress filtered by the phone column
at line 120
ChildOrderAddress
findOneByCellphone(
string $cellphone)
Return the first ChildOrderAddress filtered by the cellphone column
at line 120
ChildOrderAddress
findOneByCountryId(
int $country_id)
Return the first ChildOrderAddress filtered by the country_id column
at line 120
ChildOrderAddress
findOneByStateId(
int $state_id)
Return the first ChildOrderAddress filtered by the state_id column
at line 120
ChildOrderAddress
findOneByCreatedAt(
string $created_at)
Return the first ChildOrderAddress filtered by the created_at column
at line 120
ChildOrderAddress
findOneByUpdatedAt(
string $updated_at)
Return the first ChildOrderAddress filtered by the updated_at column
at line 120
array
findById(
int $id)
Return ChildOrderAddress objects filtered by the id column
at line 120
array
findByCustomerTitleId(
int $customer_title_id)
Return ChildOrderAddress objects filtered by the customertitleid column
at line 120
array
findByCompany(
string $company)
Return ChildOrderAddress objects filtered by the company column
at line 120
array
findByFirstname(
string $firstname)
Return ChildOrderAddress objects filtered by the firstname column
at line 120
array
findByLastname(
string $lastname)
Return ChildOrderAddress objects filtered by the lastname column
at line 120
array
findByAddress1(
string $address1)
Return ChildOrderAddress objects filtered by the address1 column
at line 120
array
findByAddress2(
string $address2)
Return ChildOrderAddress objects filtered by the address2 column
at line 120
array
findByAddress3(
string $address3)
Return ChildOrderAddress objects filtered by the address3 column
at line 120
array
findByZipcode(
string $zipcode)
Return ChildOrderAddress objects filtered by the zipcode column
at line 120
array
findByCity(
string $city)
Return ChildOrderAddress objects filtered by the city column
at line 120
array
findByPhone(
string $phone)
Return ChildOrderAddress objects filtered by the phone column
at line 120
array
findByCellphone(
string $cellphone)
Return ChildOrderAddress objects filtered by the cellphone column
at line 120
array
findByCountryId(
int $country_id)
Return ChildOrderAddress objects filtered by the country_id column
at line 120
array
findByStateId(
int $state_id)
Return ChildOrderAddress objects filtered by the state_id column
at line 120
array
findByCreatedAt(
string $created_at)
Return ChildOrderAddress objects filtered by the created_at column
at line 120
array
findByUpdatedAt(
string $updated_at)
Return ChildOrderAddress objects filtered by the updated_at column