class CustomerTitleQuery extends ModelCriteria

Base class that represents a query for the 'customer_title' table.

Methods

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\CustomerTitle', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\CustomerTitleQuery object.

create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildCustomerTitleQuery object.

CustomerTitle|array|mixed
findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

ObjectCollection|array|mixed
findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

filterByByDefault( mixed $byDefault = null, string $comparison = null)

Filter the query on the by_default column

filterByPosition( string $position = null, string $comparison = null)

Filter the query on the position column

filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

filterByCustomer( Customer|ObjectCollection $customer, string $comparison = null)

Filter the query by a related \Thelia\Model\Customer object

joinCustomer( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Customer relation

useCustomerQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Customer relation Customer object

filterByAddress( Address|ObjectCollection $address, string $comparison = null)

Filter the query by a related \Thelia\Model\Address object

joinAddress( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Address relation

useAddressQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Address relation Address object

filterByOrderAddress( OrderAddress|ObjectCollection $orderAddress, string $comparison = null)

Filter the query by a related \Thelia\Model\OrderAddress object

joinOrderAddress( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the OrderAddress relation

useOrderAddressQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the OrderAddress relation OrderAddress object

filterByCustomerTitleI18n( CustomerTitleI18n|ObjectCollection $customerTitleI18n, string $comparison = null)

Filter the query by a related \Thelia\Model\CustomerTitleI18n object

joinCustomerTitleI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the CustomerTitleI18n relation

useCustomerTitleI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the CustomerTitleI18n relation CustomerTitleI18n object

prune( CustomerTitle $customerTitle = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the customer_title table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildCustomerTitle or Criteria object OR a primary key value.

recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

recentlyCreated( int $nbDays = 7)

Filter by the latest created

lastUpdatedFirst()

Order by update date desc

firstUpdatedFirst()

Order by update date asc

lastCreatedFirst()

Order by create date desc

firstCreatedFirst()

Order by create date asc

joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

ChildCustomerTitleQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildCustomerTitleQuery
orderByByDefault($order = Criteria::ASC)

Order by the by_default column

ChildCustomerTitleQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildCustomerTitleQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildCustomerTitleQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildCustomerTitleQuery
groupById()

Group by the id column

ChildCustomerTitleQuery
groupByByDefault()

Group by the by_default column

ChildCustomerTitleQuery
groupByPosition()

Group by the position column

ChildCustomerTitleQuery
groupByCreatedAt()

Group by the created_at column

ChildCustomerTitleQuery
groupByUpdatedAt()

Group by the updated_at column

ChildCustomerTitleQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildCustomerTitleQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildCustomerTitleQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildCustomerTitleQuery
leftJoinCustomer($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Customer relation

ChildCustomerTitleQuery
rightJoinCustomer($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Customer relation

ChildCustomerTitleQuery
innerJoinCustomer($relationAlias = null)

Adds a INNER JOIN clause to the query using the Customer relation

ChildCustomerTitleQuery
leftJoinAddress($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Address relation

ChildCustomerTitleQuery
rightJoinAddress($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Address relation

ChildCustomerTitleQuery
innerJoinAddress($relationAlias = null)

Adds a INNER JOIN clause to the query using the Address relation

ChildCustomerTitleQuery
leftJoinOrderAddress($relationAlias = null)

Adds a LEFT JOIN clause to the query using the OrderAddress relation

ChildCustomerTitleQuery
rightJoinOrderAddress($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the OrderAddress relation

ChildCustomerTitleQuery
innerJoinOrderAddress($relationAlias = null)

Adds a INNER JOIN clause to the query using the OrderAddress relation

ChildCustomerTitleQuery
leftJoinCustomerTitleI18n($relationAlias = null)

Adds a LEFT JOIN clause to the query using the CustomerTitleI18n relation

ChildCustomerTitleQuery
rightJoinCustomerTitleI18n($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the CustomerTitleI18n relation

ChildCustomerTitleQuery
innerJoinCustomerTitleI18n($relationAlias = null)

Adds a INNER JOIN clause to the query using the CustomerTitleI18n relation

ChildCustomerTitle
findOne( ConnectionInterface $con = null)

Return the first ChildCustomerTitle matching the query

ChildCustomerTitle
findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildCustomerTitle matching the query, or a new ChildCustomerTitle object populated from the query conditions when no match is found

ChildCustomerTitle
findOneById( int $id)

Return the first ChildCustomerTitle filtered by the id column

ChildCustomerTitle
findOneByByDefault( int $by_default)

Return the first ChildCustomerTitle filtered by the by_default column

ChildCustomerTitle
findOneByPosition( string $position)

Return the first ChildCustomerTitle filtered by the position column

ChildCustomerTitle
findOneByCreatedAt( string $created_at)

Return the first ChildCustomerTitle filtered by the created_at column

ChildCustomerTitle
findOneByUpdatedAt( string $updated_at)

Return the first ChildCustomerTitle filtered by the updated_at column

array
findById( int $id)

Return ChildCustomerTitle objects filtered by the id column

array
findByByDefault( int $by_default)

Return ChildCustomerTitle objects filtered by the by_default column

array
findByPosition( string $position)

Return ChildCustomerTitle objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildCustomerTitle objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildCustomerTitle objects filtered by the updated_at column

Details

at line 83
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\CustomerTitle', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\CustomerTitleQuery object.

Parameters

string $dbName The database name
string $modelName The phpName of a model, e.g. 'Book'
string $modelAlias The alias for the model in this query, e.g. 'b'

at line 96
static CustomerTitleQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildCustomerTitleQuery object.

Parameters

string $modelAlias The alias of a model in the query
Criteria $criteria Optional Criteria to build the query from

Return Value

CustomerTitleQuery

at line 126
CustomerTitle|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);

Parameters

mixed $key Primary key to use for the query
ConnectionInterface $con an optional connection object

Return Value

CustomerTitle|array|mixed the result, formatted by the current formatter

at line 208
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

at line 229
CustomerTitleQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 242
CustomerTitleQuery filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

Parameters

array $keys The list of primary key to use for the query

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 266
CustomerTitleQuery 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

Parameters

mixed $id The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 307
CustomerTitleQuery filterByByDefault( mixed $byDefault = null, string $comparison = null)

Filter the query on the by_default column

Example usage: $query->filterByByDefault(1234); // WHERE bydefault = 1234 $query->filterByByDefault(array(12, 34)); // WHERE bydefault IN (12, 34) $query->filterByByDefault(array('min' => 12)); // WHERE by_default > 12

Parameters

mixed $byDefault The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 345
CustomerTitleQuery filterByPosition( string $position = null, string $comparison = null)

Filter the query on the position column

Example usage: $query->filterByPosition('fooValue'); // WHERE position = 'fooValue' $query->filterByPosition('%fooValue%'); // WHERE position LIKE '%fooValue%'

Parameters

string $position The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 379
CustomerTitleQuery 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'

Parameters

mixed $createdAt The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 422
CustomerTitleQuery 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'

Parameters

mixed $updatedAt The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 453
CustomerTitleQuery filterByCustomer( Customer|ObjectCollection $customer, string $comparison = null)

Filter the query by a related \Thelia\Model\Customer object

Parameters

Customer|ObjectCollection $customer the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 476
CustomerTitleQuery joinCustomer( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Customer relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 511
CustomerQuery useCustomerQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Customer relation Customer object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CustomerQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 526
CustomerTitleQuery filterByAddress( Address|ObjectCollection $address, string $comparison = null)

Filter the query by a related \Thelia\Model\Address object

Parameters

Address|ObjectCollection $address the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 549
CustomerTitleQuery joinAddress( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Address relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 584
AddressQuery useAddressQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the Address relation Address object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

AddressQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 599
CustomerTitleQuery filterByOrderAddress( OrderAddress|ObjectCollection $orderAddress, string $comparison = null)

Filter the query by a related \Thelia\Model\OrderAddress object

Parameters

OrderAddress|ObjectCollection $orderAddress the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 622
CustomerTitleQuery joinOrderAddress( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the OrderAddress relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 657
OrderAddressQuery useOrderAddressQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the OrderAddress relation OrderAddress object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

OrderAddressQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 672
CustomerTitleQuery filterByCustomerTitleI18n( CustomerTitleI18n|ObjectCollection $customerTitleI18n, string $comparison = null)

Filter the query by a related \Thelia\Model\CustomerTitleI18n object

Parameters

CustomerTitleI18n|ObjectCollection $customerTitleI18n the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 695
CustomerTitleQuery joinCustomerTitleI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the CustomerTitleI18n relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 730
CustomerTitleI18nQuery useCustomerTitleI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the CustomerTitleI18n relation CustomerTitleI18n object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CustomerTitleI18nQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 744
CustomerTitleQuery prune( CustomerTitle $customerTitle = null)

Exclude object from result

Parameters

CustomerTitle $customerTitle Object to remove from the list of results

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 759
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the customer_title table.

Parameters

ConnectionInterface $con the connection to use

Return Value

int The number of affected rows (if supported by underlying database driver).

at line 796
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildCustomerTitle or Criteria object OR a primary key value.

Parameters

ConnectionInterface $con

Return Value

int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows if supported by native driver or if emulated using Propel.

Exceptions

PropelException Any exceptions caught during processing will be rethrown wrapped into a PropelException.

at line 837
CustomerTitleQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 849
CustomerTitleQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 859
CustomerTitleQuery lastUpdatedFirst()

Order by update date desc

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 869
CustomerTitleQuery firstUpdatedFirst()

Order by update date asc

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 879
CustomerTitleQuery lastCreatedFirst()

Order by create date desc

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 889
CustomerTitleQuery firstCreatedFirst()

Order by create date asc

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 905
CustomerTitleQuery joinI18n( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the i18n relation

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 923
CustomerTitleQuery joinWithI18n( string $locale = 'en_US', string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query and hydrates the related I18n object.

Shortcut for $c->joinI18n($locale)->with()

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

CustomerTitleQuery The current query, for fluid interface

at line 944
CustomerTitleI18nQuery useI18nQuery( string $locale = 'en_US', string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the I18n relation query object

Parameters

string $locale Locale to use for the join condition, e.g. 'fr_FR'
string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'. Defaults to left join.

Return Value

CustomerTitleI18nQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 73
ChildCustomerTitleQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery orderByByDefault($order = Criteria::ASC)

Order by the by_default column

Parameters

$order

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery groupById()

Group by the id column

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery groupByByDefault()

Group by the by_default column

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery groupByPosition()

Group by the position column

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery leftJoinCustomer($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Customer relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery rightJoinCustomer($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Customer relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery innerJoinCustomer($relationAlias = null)

Adds a INNER JOIN clause to the query using the Customer relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery leftJoinAddress($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Address relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery rightJoinAddress($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Address relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery innerJoinAddress($relationAlias = null)

Adds a INNER JOIN clause to the query using the Address relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery leftJoinOrderAddress($relationAlias = null)

Adds a LEFT JOIN clause to the query using the OrderAddress relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery rightJoinOrderAddress($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the OrderAddress relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery innerJoinOrderAddress($relationAlias = null)

Adds a INNER JOIN clause to the query using the OrderAddress relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery leftJoinCustomerTitleI18n($relationAlias = null)

Adds a LEFT JOIN clause to the query using the CustomerTitleI18n relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery rightJoinCustomerTitleI18n($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the CustomerTitleI18n relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitleQuery innerJoinCustomerTitleI18n($relationAlias = null)

Adds a INNER JOIN clause to the query using the CustomerTitleI18n relation

Parameters

$relationAlias

Return Value

ChildCustomerTitleQuery

at line 73
ChildCustomerTitle findOne( ConnectionInterface $con = null)

Return the first ChildCustomerTitle matching the query

Parameters

ConnectionInterface $con

Return Value

ChildCustomerTitle

at line 73
ChildCustomerTitle findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildCustomerTitle matching the query, or a new ChildCustomerTitle object populated from the query conditions when no match is found

Parameters

ConnectionInterface $con

Return Value

ChildCustomerTitle

at line 73
ChildCustomerTitle findOneById( int $id)

Return the first ChildCustomerTitle filtered by the id column

Parameters

int $id

Return Value

ChildCustomerTitle

at line 73
ChildCustomerTitle findOneByByDefault( int $by_default)

Return the first ChildCustomerTitle filtered by the by_default column

Parameters

int $by_default

Return Value

ChildCustomerTitle

at line 73
ChildCustomerTitle findOneByPosition( string $position)

Return the first ChildCustomerTitle filtered by the position column

Parameters

string $position

Return Value

ChildCustomerTitle

at line 73
ChildCustomerTitle findOneByCreatedAt( string $created_at)

Return the first ChildCustomerTitle filtered by the created_at column

Parameters

string $created_at

Return Value

ChildCustomerTitle

at line 73
ChildCustomerTitle findOneByUpdatedAt( string $updated_at)

Return the first ChildCustomerTitle filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildCustomerTitle

at line 73
array findById( int $id)

Return ChildCustomerTitle objects filtered by the id column

Parameters

int $id

Return Value

array

at line 73
array findByByDefault( int $by_default)

Return ChildCustomerTitle objects filtered by the by_default column

Parameters

int $by_default

Return Value

array

at line 73
array findByPosition( string $position)

Return ChildCustomerTitle objects filtered by the position column

Parameters

string $position

Return Value

array

at line 73
array findByCreatedAt( string $created_at)

Return ChildCustomerTitle objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 73
array findByUpdatedAt( string $updated_at)

Return ChildCustomerTitle objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array