class ProfileQuery extends ProfileQuery

Skeleton subclass for performing query and update operations on the 'profile' table.

You should add additional methods to this class to meet the application requirements. This class will only be generated as long as it does not already exist in the output directory.

Methods

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

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

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

Returns a new ChildProfileQuery object.

Profile|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

filterByCode( string $code = null, string $comparison = null)

Filter the query on the code 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

filterByAdmin( Admin|ObjectCollection $admin, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Admin relation

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

Use the Admin relation Admin object

filterByProfileResource( ProfileResource|ObjectCollection $profileResource, string $comparison = null)

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

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

Adds a JOIN clause to the query using the ProfileResource relation

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

Use the ProfileResource relation ProfileResource object

filterByProfileModule( ProfileModule|ObjectCollection $profileModule, string $comparison = null)

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

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

Adds a JOIN clause to the query using the ProfileModule relation

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

Use the ProfileModule relation ProfileModule object

filterByApi( Api|ObjectCollection $api, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Api relation

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

Use the Api relation Api object

filterByProfileI18n( ProfileI18n|ObjectCollection $profileI18n, string $comparison = null)

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

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

Adds a JOIN clause to the query using the ProfileI18n relation

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

Use the ProfileI18n relation ProfileI18n object

filterByResource( Resource $resource, string $comparison = Criteria::EQUAL)

Filter the query by a related Resource object using the profile_resource table as cross reference

prune( Profile $profile = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the profile table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildProfile 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

ChildProfileQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildProfileQuery
orderByCode($order = Criteria::ASC)

Order by the code column

ChildProfileQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildProfileQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildProfileQuery
groupById()

Group by the id column

ChildProfileQuery
groupByCode()

Group by the code column

ChildProfileQuery
groupByCreatedAt()

Group by the created_at column

ChildProfileQuery
groupByUpdatedAt()

Group by the updated_at column

ChildProfileQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildProfileQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildProfileQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildProfileQuery
leftJoinAdmin($relationAlias = null)

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

ChildProfileQuery
rightJoinAdmin($relationAlias = null)

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

ChildProfileQuery
innerJoinAdmin($relationAlias = null)

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

ChildProfileQuery
leftJoinProfileResource($relationAlias = null)

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

ChildProfileQuery
rightJoinProfileResource($relationAlias = null)

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

ChildProfileQuery
innerJoinProfileResource($relationAlias = null)

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

ChildProfileQuery
leftJoinProfileModule($relationAlias = null)

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

ChildProfileQuery
rightJoinProfileModule($relationAlias = null)

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

ChildProfileQuery
innerJoinProfileModule($relationAlias = null)

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

ChildProfileQuery
leftJoinApi($relationAlias = null)

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

ChildProfileQuery
rightJoinApi($relationAlias = null)

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

ChildProfileQuery
innerJoinApi($relationAlias = null)

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

ChildProfileQuery
leftJoinProfileI18n($relationAlias = null)

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

ChildProfileQuery
rightJoinProfileI18n($relationAlias = null)

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

ChildProfileQuery
innerJoinProfileI18n($relationAlias = null)

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

ChildProfile
findOne( ConnectionInterface $con = null)

Return the first ChildProfile matching the query

ChildProfile
findOneOrCreate( ConnectionInterface $con = null)

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

ChildProfile
findOneById( int $id)

Return the first ChildProfile filtered by the id column

ChildProfile
findOneByCode( string $code)

Return the first ChildProfile filtered by the code column

ChildProfile
findOneByCreatedAt( string $created_at)

Return the first ChildProfile filtered by the created_at column

ChildProfile
findOneByUpdatedAt( string $updated_at)

Return the first ChildProfile filtered by the updated_at column

array
findById( int $id)

Return ChildProfile objects filtered by the id column

array
findByCode( string $code)

Return ChildProfile objects filtered by the code column

array
findByCreatedAt( string $created_at)

Return ChildProfile objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildProfile objects filtered by the updated_at column

static 
getProfileList()

No description

Details

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

Initializes internal state of \Thelia\Model\Base\ProfileQuery 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'

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

Returns a new ChildProfileQuery object.

Parameters

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

Return Value

ProfileQuery

in ProfileQuery at line 126
Profile|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

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

in ProfileQuery 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

in ProfileQuery at line 229
ProfileQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 242
ProfileQuery 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

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 266
ProfileQuery 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

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 304
ProfileQuery filterByCode( string $code = null, string $comparison = null)

Filter the query on the code column

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

Parameters

string $code 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

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 338
ProfileQuery 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

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 381
ProfileQuery 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

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 412
ProfileQuery filterByAdmin( Admin|ObjectCollection $admin, string $comparison = null)

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

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 435
ProfileQuery joinAdmin( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the Admin relation

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 470
AdminQuery useAdminQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the Admin relation Admin 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

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

See also

useQuery()

in ProfileQuery at line 485
ProfileQuery filterByProfileResource( ProfileResource|ObjectCollection $profileResource, string $comparison = null)

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

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 508
ProfileQuery joinProfileResource( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the ProfileResource relation

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 543
ProfileResourceQuery useProfileResourceQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the ProfileResource relation ProfileResource 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

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

See also

useQuery()

in ProfileQuery at line 558
ProfileQuery filterByProfileModule( ProfileModule|ObjectCollection $profileModule, string $comparison = null)

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

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 581
ProfileQuery joinProfileModule( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the ProfileModule relation

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 616
ProfileModuleQuery useProfileModuleQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the ProfileModule relation ProfileModule 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

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

See also

useQuery()

in ProfileQuery at line 631
ProfileQuery filterByApi( Api|ObjectCollection $api, string $comparison = null)

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

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 654
ProfileQuery joinApi( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the Api relation

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 689
ApiQuery useApiQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Use the Api relation Api 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

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

See also

useQuery()

in ProfileQuery at line 704
ProfileQuery filterByProfileI18n( ProfileI18n|ObjectCollection $profileI18n, string $comparison = null)

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

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 727
ProfileQuery joinProfileI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the ProfileI18n relation

Parameters

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

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 762
ProfileI18nQuery useProfileI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the ProfileI18n relation ProfileI18n 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

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

See also

useQuery()

in ProfileQuery at line 778
ProfileQuery filterByResource( Resource $resource, string $comparison = Criteria::EQUAL)

Filter the query by a related Resource object using the profile_resource table as cross reference

Parameters

Resource $resource the related object to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 793
ProfileQuery prune( Profile $profile = null)

Exclude object from result

Parameters

Profile $profile Object to remove from the list of results

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 808
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the profile table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

in ProfileQuery at line 845
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildProfile 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.

in ProfileQuery at line 886
ProfileQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 898
ProfileQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 908
ProfileQuery lastUpdatedFirst()

Order by update date desc

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 918
ProfileQuery firstUpdatedFirst()

Order by update date asc

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 928
ProfileQuery lastCreatedFirst()

Order by create date desc

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 938
ProfileQuery firstCreatedFirst()

Order by create date asc

Return Value

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 954
ProfileQuery 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

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 972
ProfileQuery 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

ProfileQuery The current query, for fluid interface

in ProfileQuery at line 993
ProfileI18nQuery 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

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

See also

useQuery()

in ProfileQuery at line 73
ChildProfileQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery orderByCode($order = Criteria::ASC)

Order by the code column

Parameters

$order

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery groupById()

Group by the id column

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery groupByCode()

Group by the code column

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery leftJoinAdmin($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery rightJoinAdmin($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery innerJoinAdmin($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery leftJoinProfileResource($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery rightJoinProfileResource($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery innerJoinProfileResource($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery leftJoinProfileModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery rightJoinProfileModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery innerJoinProfileModule($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery leftJoinApi($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery rightJoinApi($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery innerJoinApi($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery leftJoinProfileI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery rightJoinProfileI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfileQuery innerJoinProfileI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProfileQuery

in ProfileQuery at line 73
ChildProfile findOne( ConnectionInterface $con = null)

Return the first ChildProfile matching the query

Parameters

ConnectionInterface $con

Return Value

ChildProfile

in ProfileQuery at line 73
ChildProfile findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildProfile

in ProfileQuery at line 73
ChildProfile findOneById( int $id)

Return the first ChildProfile filtered by the id column

Parameters

int $id

Return Value

ChildProfile

in ProfileQuery at line 73
ChildProfile findOneByCode( string $code)

Return the first ChildProfile filtered by the code column

Parameters

string $code

Return Value

ChildProfile

in ProfileQuery at line 73
ChildProfile findOneByCreatedAt( string $created_at)

Return the first ChildProfile filtered by the created_at column

Parameters

string $created_at

Return Value

ChildProfile

in ProfileQuery at line 73
ChildProfile findOneByUpdatedAt( string $updated_at)

Return the first ChildProfile filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildProfile

in ProfileQuery at line 73
array findById( int $id)

Return ChildProfile objects filtered by the id column

Parameters

int $id

Return Value

array

in ProfileQuery at line 73
array findByCode( string $code)

Return ChildProfile objects filtered by the code column

Parameters

string $code

Return Value

array

in ProfileQuery at line 73
array findByCreatedAt( string $created_at)

Return ChildProfile objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

in ProfileQuery at line 73
array findByUpdatedAt( string $updated_at)

Return ChildProfile objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array

at line 20
static getProfileList()