class FeatureProductQuery extends FeatureProductQuery

Skeleton subclass for performing query and update operations on the 'feature_product' 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\\FeatureProduct', string $modelAlias = null)

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

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

Returns a new ChildFeatureProductQuery object.

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

filterByProductId( mixed $productId = null, string $comparison = null)

Filter the query on the product_id column

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

Filter the query on the feature_id column

filterByFeatureAvId( mixed $featureAvId = null, string $comparison = null)

Filter the query on the featureavid column

filterByFreeTextValue( string $freeTextValue = null, string $comparison = null)

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

filterByProduct( Product|ObjectCollection $product, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Product relation

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

Use the Product relation Product object

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

filterByFeatureAv( FeatureAv|ObjectCollection $featureAv, string $comparison = null)

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

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

Adds a JOIN clause to the query using the FeatureAv relation

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

Use the FeatureAv relation FeatureAv object

prune( FeatureProduct $featureProduct = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the feature_product table.

int
delete( ConnectionInterface $con = null)

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

ChildFeatureProductQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildFeatureProductQuery
orderByProductId($order = Criteria::ASC)

Order by the product_id column

ChildFeatureProductQuery
orderByFeatureId($order = Criteria::ASC)

Order by the feature_id column

ChildFeatureProductQuery
orderByFeatureAvId($order = Criteria::ASC)

Order by the featureavid column

ChildFeatureProductQuery
orderByFreeTextValue($order = Criteria::ASC)

Order by the freetextvalue column

ChildFeatureProductQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildFeatureProductQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildFeatureProductQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildFeatureProductQuery
groupById()

Group by the id column

ChildFeatureProductQuery
groupByProductId()

Group by the product_id column

ChildFeatureProductQuery
groupByFeatureId()

Group by the feature_id column

ChildFeatureProductQuery
groupByFeatureAvId()

Group by the featureavid column

ChildFeatureProductQuery
groupByFreeTextValue()

Group by the freetextvalue column

ChildFeatureProductQuery
groupByPosition()

Group by the position column

ChildFeatureProductQuery
groupByCreatedAt()

Group by the created_at column

ChildFeatureProductQuery
groupByUpdatedAt()

Group by the updated_at column

ChildFeatureProductQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildFeatureProductQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildFeatureProductQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildFeatureProductQuery
leftJoinProduct($relationAlias = null)

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

ChildFeatureProductQuery
rightJoinProduct($relationAlias = null)

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

ChildFeatureProductQuery
innerJoinProduct($relationAlias = null)

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

ChildFeatureProductQuery
leftJoinFeature($relationAlias = null)

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

ChildFeatureProductQuery
rightJoinFeature($relationAlias = null)

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

ChildFeatureProductQuery
innerJoinFeature($relationAlias = null)

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

ChildFeatureProductQuery
leftJoinFeatureAv($relationAlias = null)

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

ChildFeatureProductQuery
rightJoinFeatureAv($relationAlias = null)

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

ChildFeatureProductQuery
innerJoinFeatureAv($relationAlias = null)

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

ChildFeatureProduct
findOne( ConnectionInterface $con = null)

Return the first ChildFeatureProduct matching the query

ChildFeatureProduct
findOneOrCreate( ConnectionInterface $con = null)

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

ChildFeatureProduct
findOneById( int $id)

Return the first ChildFeatureProduct filtered by the id column

ChildFeatureProduct
findOneByProductId( int $product_id)

Return the first ChildFeatureProduct filtered by the product_id column

ChildFeatureProduct
findOneByFeatureId( int $feature_id)

Return the first ChildFeatureProduct filtered by the feature_id column

ChildFeatureProduct
findOneByFeatureAvId( int $feature_av_id)

Return the first ChildFeatureProduct filtered by the featureavid column

ChildFeatureProduct
findOneByFreeTextValue( string $free_text_value)

Return the first ChildFeatureProduct filtered by the freetextvalue column

ChildFeatureProduct
findOneByPosition( int $position)

Return the first ChildFeatureProduct filtered by the position column

ChildFeatureProduct
findOneByCreatedAt( string $created_at)

Return the first ChildFeatureProduct filtered by the created_at column

ChildFeatureProduct
findOneByUpdatedAt( string $updated_at)

Return the first ChildFeatureProduct filtered by the updated_at column

array
findById( int $id)

Return ChildFeatureProduct objects filtered by the id column

array
findByProductId( int $product_id)

Return ChildFeatureProduct objects filtered by the product_id column

array
findByFeatureId( int $feature_id)

Return ChildFeatureProduct objects filtered by the feature_id column

array
findByFeatureAvId( int $feature_av_id)

Return ChildFeatureProduct objects filtered by the featureavid column

array
findByFreeTextValue( string $free_text_value)

Return ChildFeatureProduct objects filtered by the freetextvalue column

array
findByPosition( int $position)

Return ChildFeatureProduct objects filtered by the position column

array
findByCreatedAt( string $created_at)

Return ChildFeatureProduct objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildFeatureProduct objects filtered by the updated_at column

Details

in FeatureProductQuery at line 90
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\FeatureProduct', string $modelAlias = null)

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

Returns a new ChildFeatureProductQuery object.

Parameters

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

Return Value

FeatureProductQuery

in FeatureProductQuery at line 133
FeatureProduct|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

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

in FeatureProductQuery at line 215
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 FeatureProductQuery at line 236
FeatureProductQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 249
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 273
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 316
FeatureProductQuery filterByProductId( mixed $productId = null, string $comparison = null)

Filter the query on the product_id column

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

Parameters

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

FeatureProductQuery The current query, for fluid interface

See also

filterByProduct()

in FeatureProductQuery at line 359
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

See also

filterByFeature()

in FeatureProductQuery at line 402
FeatureProductQuery filterByFeatureAvId( mixed $featureAvId = null, string $comparison = null)

Filter the query on the featureavid column

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

Parameters

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

FeatureProductQuery The current query, for fluid interface

See also

filterByFeatureAv()

in FeatureProductQuery at line 440
FeatureProductQuery filterByFreeTextValue( string $freeTextValue = null, string $comparison = null)

Filter the query on the freetextvalue column

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

Parameters

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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 472
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 515
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 558
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 589
FeatureProductQuery filterByProduct( Product|ObjectCollection $product, string $comparison = null)

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

Parameters

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

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 614
FeatureProductQuery joinProduct( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Product relation

Parameters

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

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 649
ProductQuery useProductQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

in FeatureProductQuery at line 664
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 689
FeatureProductQuery 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

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 724
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()

in FeatureProductQuery at line 739
FeatureProductQuery filterByFeatureAv( FeatureAv|ObjectCollection $featureAv, string $comparison = null)

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

Parameters

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

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 764
FeatureProductQuery joinFeatureAv( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the FeatureAv relation

Parameters

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

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 799
FeatureAvQuery useFeatureAvQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

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

See also

useQuery()

in FeatureProductQuery at line 813
FeatureProductQuery prune( FeatureProduct $featureProduct = null)

Exclude object from result

Parameters

FeatureProduct $featureProduct Object to remove from the list of results

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 828
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the feature_product table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

in FeatureProductQuery at line 865
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildFeatureProduct 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 FeatureProductQuery at line 906
FeatureProductQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 918
FeatureProductQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 928
FeatureProductQuery lastUpdatedFirst()

Order by update date desc

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 938
FeatureProductQuery firstUpdatedFirst()

Order by update date asc

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 948
FeatureProductQuery lastCreatedFirst()

Order by create date desc

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 958
FeatureProductQuery firstCreatedFirst()

Order by create date asc

Return Value

FeatureProductQuery The current query, for fluid interface

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderByProductId($order = Criteria::ASC)

Order by the product_id column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderByFeatureId($order = Criteria::ASC)

Order by the feature_id column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderByFeatureAvId($order = Criteria::ASC)

Order by the featureavid column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderByFreeTextValue($order = Criteria::ASC)

Order by the freetextvalue column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupById()

Group by the id column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupByProductId()

Group by the product_id column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupByFeatureId()

Group by the feature_id column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupByFeatureAvId()

Group by the featureavid column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupByFreeTextValue()

Group by the freetextvalue column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupByPosition()

Group by the position column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery leftJoinProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery rightJoinProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery innerJoinProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery leftJoinFeature($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery rightJoinFeature($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery innerJoinFeature($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery leftJoinFeatureAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery rightJoinFeatureAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProductQuery innerJoinFeatureAv($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildFeatureProductQuery

in FeatureProductQuery at line 80
ChildFeatureProduct findOne( ConnectionInterface $con = null)

Return the first ChildFeatureProduct matching the query

Parameters

ConnectionInterface $con

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneById( int $id)

Return the first ChildFeatureProduct filtered by the id column

Parameters

int $id

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneByProductId( int $product_id)

Return the first ChildFeatureProduct filtered by the product_id column

Parameters

int $product_id

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneByFeatureId( int $feature_id)

Return the first ChildFeatureProduct filtered by the feature_id column

Parameters

int $feature_id

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneByFeatureAvId( int $feature_av_id)

Return the first ChildFeatureProduct filtered by the featureavid column

Parameters

int $feature_av_id

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneByFreeTextValue( string $free_text_value)

Return the first ChildFeatureProduct filtered by the freetextvalue column

Parameters

string $free_text_value

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneByPosition( int $position)

Return the first ChildFeatureProduct filtered by the position column

Parameters

int $position

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneByCreatedAt( string $created_at)

Return the first ChildFeatureProduct filtered by the created_at column

Parameters

string $created_at

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
ChildFeatureProduct findOneByUpdatedAt( string $updated_at)

Return the first ChildFeatureProduct filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildFeatureProduct

in FeatureProductQuery at line 80
array findById( int $id)

Return ChildFeatureProduct objects filtered by the id column

Parameters

int $id

Return Value

array

in FeatureProductQuery at line 80
array findByProductId( int $product_id)

Return ChildFeatureProduct objects filtered by the product_id column

Parameters

int $product_id

Return Value

array

in FeatureProductQuery at line 80
array findByFeatureId( int $feature_id)

Return ChildFeatureProduct objects filtered by the feature_id column

Parameters

int $feature_id

Return Value

array

in FeatureProductQuery at line 80
array findByFeatureAvId( int $feature_av_id)

Return ChildFeatureProduct objects filtered by the featureavid column

Parameters

int $feature_av_id

Return Value

array

in FeatureProductQuery at line 80
array findByFreeTextValue( string $free_text_value)

Return ChildFeatureProduct objects filtered by the freetextvalue column

Parameters

string $free_text_value

Return Value

array

in FeatureProductQuery at line 80
array findByPosition( int $position)

Return ChildFeatureProduct objects filtered by the position column

Parameters

int $position

Return Value

array

in FeatureProductQuery at line 80
array findByCreatedAt( string $created_at)

Return ChildFeatureProduct objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

in FeatureProductQuery at line 80
array findByUpdatedAt( string $updated_at)

Return ChildFeatureProduct objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array