class FeatureAvQuery extends ModelCriteria

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

Methods

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

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

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

Returns a new ChildFeatureAvQuery object.

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

filterByFeatureId( mixed $featureId = null, string $comparison = null)

Filter the query on the feature_id column

filterByPosition( mixed $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

filterByFeature( Feature|ObjectCollection $feature, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Feature relation

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

Use the Feature relation Feature object

filterByFeatureProduct( FeatureProduct|ObjectCollection $featureProduct, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FeatureProduct relation

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

Use the FeatureProduct relation FeatureProduct object

filterByFeatureAvI18n( FeatureAvI18n|ObjectCollection $featureAvI18n, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FeatureAvI18n relation

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

Use the FeatureAvI18n relation FeatureAvI18n object

prune( FeatureAv $featureAv = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the feature_av table.

int
delete( ConnectionInterface $con = null)

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

ChildFeatureAvQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildFeatureAvQuery
orderByFeatureId($order = Criteria::ASC)

Order by the feature_id column

ChildFeatureAvQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildFeatureAvQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildFeatureAvQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildFeatureAvQuery
groupById()

Group by the id column

ChildFeatureAvQuery
groupByFeatureId()

Group by the feature_id column

ChildFeatureAvQuery
groupByPosition()

Group by the position column

ChildFeatureAvQuery
groupByCreatedAt()

Group by the created_at column

ChildFeatureAvQuery
groupByUpdatedAt()

Group by the updated_at column

ChildFeatureAvQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildFeatureAvQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildFeatureAvQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildFeatureAvQuery
leftJoinFeature($relationAlias = null)

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

ChildFeatureAvQuery
rightJoinFeature($relationAlias = null)

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

ChildFeatureAvQuery
innerJoinFeature($relationAlias = null)

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

ChildFeatureAvQuery
leftJoinFeatureProduct($relationAlias = null)

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

ChildFeatureAvQuery
rightJoinFeatureProduct($relationAlias = null)

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

ChildFeatureAvQuery
innerJoinFeatureProduct($relationAlias = null)

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

ChildFeatureAvQuery
leftJoinFeatureAvI18n($relationAlias = null)

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

ChildFeatureAvQuery
rightJoinFeatureAvI18n($relationAlias = null)

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

ChildFeatureAvQuery
innerJoinFeatureAvI18n($relationAlias = null)

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

ChildFeatureAv
findOne( ConnectionInterface $con = null)

Return the first ChildFeatureAv matching the query

ChildFeatureAv
findOneOrCreate( ConnectionInterface $con = null)

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

ChildFeatureAv
findOneById( int $id)

Return the first ChildFeatureAv filtered by the id column

ChildFeatureAv
findOneByFeatureId( int $feature_id)

Return the first ChildFeatureAv filtered by the feature_id column

ChildFeatureAv
findOneByPosition( int $position)

Return the first ChildFeatureAv filtered by the position column

ChildFeatureAv
findOneByCreatedAt( string $created_at)

Return the first ChildFeatureAv filtered by the created_at column

ChildFeatureAv
findOneByUpdatedAt( string $updated_at)

Return the first ChildFeatureAv filtered by the updated_at column

array
findById( int $id)

Return ChildFeatureAv objects filtered by the id column

array
findByFeatureId( int $feature_id)

Return ChildFeatureAv objects filtered by the feature_id column

array
findByPosition( int $position)

Return ChildFeatureAv objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildFeatureAv objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildFeatureAv objects filtered by the updated_at column

Details

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

Initializes internal state of \Thelia\Model\Base\FeatureAvQuery 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 92
static FeatureAvQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildFeatureAvQuery object.

Parameters

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

Return Value

FeatureAvQuery

at line 122
FeatureAv|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

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

at line 204
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 225
FeatureAvQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

FeatureAvQuery The current query, for fluid interface

at line 238
FeatureAvQuery 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

FeatureAvQuery The current query, for fluid interface

at line 262
FeatureAvQuery 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

FeatureAvQuery The current query, for fluid interface

at line 305
FeatureAvQuery filterByFeatureId( mixed $featureId = null, string $comparison = null)

Filter the query on the feature_id column

Example usage: $query->filterByFeatureId(1234); // WHERE featureid = 1234 $query->filterByFeatureId(array(12, 34)); // WHERE featureid IN (12, 34) $query->filterByFeatureId(array('min' => 12)); // WHERE feature_id > 12

Parameters

mixed $featureId 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

FeatureAvQuery The current query, for fluid interface

See also

filterByFeature()

at line 346
FeatureAvQuery filterByPosition( mixed $position = null, string $comparison = null)

Filter the query on the position column

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

Parameters

mixed $position 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

FeatureAvQuery The current query, for fluid interface

at line 389
FeatureAvQuery 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

FeatureAvQuery The current query, for fluid interface

at line 432
FeatureAvQuery 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

FeatureAvQuery The current query, for fluid interface

at line 463
FeatureAvQuery filterByFeature( Feature|ObjectCollection $feature, string $comparison = null)

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

Parameters

Feature|ObjectCollection $feature The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

FeatureAvQuery The current query, for fluid interface

at line 488
FeatureAvQuery joinFeature( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Feature relation

Parameters

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

Return Value

FeatureAvQuery The current query, for fluid interface

at line 523
FeatureQuery useFeatureQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

at line 538
FeatureAvQuery filterByFeatureProduct( FeatureProduct|ObjectCollection $featureProduct, string $comparison = null)

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

Parameters

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

Return Value

FeatureAvQuery The current query, for fluid interface

at line 561
FeatureAvQuery joinFeatureProduct( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the FeatureProduct relation

Parameters

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

Return Value

FeatureAvQuery The current query, for fluid interface

at line 596
FeatureProductQuery useFeatureProductQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

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

See also

useQuery()

at line 611
FeatureAvQuery filterByFeatureAvI18n( FeatureAvI18n|ObjectCollection $featureAvI18n, string $comparison = null)

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

Parameters

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

Return Value

FeatureAvQuery The current query, for fluid interface

at line 634
FeatureAvQuery joinFeatureAvI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the FeatureAvI18n relation

Parameters

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

Return Value

FeatureAvQuery The current query, for fluid interface

at line 669
FeatureAvI18nQuery useFeatureAvI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

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

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

See also

useQuery()

at line 683
FeatureAvQuery prune( FeatureAv $featureAv = null)

Exclude object from result

Parameters

FeatureAv $featureAv Object to remove from the list of results

Return Value

FeatureAvQuery The current query, for fluid interface

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

Deletes all rows from the feature_av table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

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

Performs a DELETE on the database, given a ChildFeatureAv 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 776
FeatureAvQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

FeatureAvQuery The current query, for fluid interface

at line 788
FeatureAvQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

FeatureAvQuery The current query, for fluid interface

at line 798
FeatureAvQuery lastUpdatedFirst()

Order by update date desc

Return Value

FeatureAvQuery The current query, for fluid interface

at line 808
FeatureAvQuery firstUpdatedFirst()

Order by update date asc

Return Value

FeatureAvQuery The current query, for fluid interface

at line 818
FeatureAvQuery lastCreatedFirst()

Order by create date desc

Return Value

FeatureAvQuery The current query, for fluid interface

at line 828
FeatureAvQuery firstCreatedFirst()

Order by create date asc

Return Value

FeatureAvQuery The current query, for fluid interface

at line 844
FeatureAvQuery 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

FeatureAvQuery The current query, for fluid interface

at line 862
FeatureAvQuery 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

FeatureAvQuery The current query, for fluid interface

at line 883
FeatureAvI18nQuery 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

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

See also

useQuery()

at line 69
ChildFeatureAvQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery orderByFeatureId($order = Criteria::ASC)

Order by the feature_id column

Parameters

$order

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery groupById()

Group by the id column

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery groupByFeatureId()

Group by the feature_id column

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery groupByPosition()

Group by the position column

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery leftJoinFeature($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery rightJoinFeature($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery innerJoinFeature($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery leftJoinFeatureProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery rightJoinFeatureProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery innerJoinFeatureProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery leftJoinFeatureAvI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery rightJoinFeatureAvI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAvQuery innerJoinFeatureAvI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureAvQuery

at line 69
ChildFeatureAv findOne( ConnectionInterface $con = null)

Return the first ChildFeatureAv matching the query

Parameters

ConnectionInterface $con

Return Value

ChildFeatureAv

at line 69
ChildFeatureAv findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildFeatureAv

at line 69
ChildFeatureAv findOneById( int $id)

Return the first ChildFeatureAv filtered by the id column

Parameters

int $id

Return Value

ChildFeatureAv

at line 69
ChildFeatureAv findOneByFeatureId( int $feature_id)

Return the first ChildFeatureAv filtered by the feature_id column

Parameters

int $feature_id

Return Value

ChildFeatureAv

at line 69
ChildFeatureAv findOneByPosition( int $position)

Return the first ChildFeatureAv filtered by the position column

Parameters

int $position

Return Value

ChildFeatureAv

at line 69
ChildFeatureAv findOneByCreatedAt( string $created_at)

Return the first ChildFeatureAv filtered by the created_at column

Parameters

string $created_at

Return Value

ChildFeatureAv

at line 69
ChildFeatureAv findOneByUpdatedAt( string $updated_at)

Return the first ChildFeatureAv filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildFeatureAv

at line 69
array findById( int $id)

Return ChildFeatureAv objects filtered by the id column

Parameters

int $id

Return Value

array

at line 69
array findByFeatureId( int $feature_id)

Return ChildFeatureAv objects filtered by the feature_id column

Parameters

int $feature_id

Return Value

array

at line 69
array findByPosition( int $position)

Return ChildFeatureAv objects filtered by the position column

Parameters

int $position

Return Value

array

at line 69
array findByCreatedAt( string $created_at)

Return ChildFeatureAv objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 69
array findByUpdatedAt( string $updated_at)

Return ChildFeatureAv objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array