class ProductVersionQuery extends ModelCriteria

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

Methods

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

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

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

Returns a new ChildProductVersionQuery object.

ProductVersion|array|mixed
findPk($key, $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(array(12, 56), array(832, 123), array(123, 456)), $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

filterByTaxRuleId( mixed $taxRuleId = null, string $comparison = null)

Filter the query on the taxruleid column

filterByRef( string $ref = null, string $comparison = null)

Filter the query on the ref column

filterByVisible( mixed $visible = null, string $comparison = null)

Filter the query on the visible column

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

Filter the query on the position column

filterByTemplateId( mixed $templateId = null, string $comparison = null)

Filter the query on the template_id column

filterByBrandId( mixed $brandId = null, string $comparison = null)

Filter the query on the brand_id column

filterByVirtual( mixed $virtual = null, string $comparison = null)

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

filterByVersion( mixed $version = null, string $comparison = null)

Filter the query on the version column

filterByVersionCreatedAt( mixed $versionCreatedAt = null, string $comparison = null)

Filter the query on the versioncreatedat column

filterByVersionCreatedBy( string $versionCreatedBy = null, string $comparison = null)

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

prune( ProductVersion $productVersion = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the product_version table.

int
delete( ConnectionInterface $con = null)

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

ChildProductVersionQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildProductVersionQuery
orderByTaxRuleId($order = Criteria::ASC)

Order by the taxruleid column

ChildProductVersionQuery
orderByRef($order = Criteria::ASC)

Order by the ref column

ChildProductVersionQuery
orderByVisible($order = Criteria::ASC)

Order by the visible column

ChildProductVersionQuery
orderByPosition($order = Criteria::ASC)

Order by the position column

ChildProductVersionQuery
orderByTemplateId($order = Criteria::ASC)

Order by the template_id column

ChildProductVersionQuery
orderByBrandId($order = Criteria::ASC)

Order by the brand_id column

ChildProductVersionQuery
orderByVirtual($order = Criteria::ASC)

Order by the virtual column

ChildProductVersionQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildProductVersionQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildProductVersionQuery
orderByVersion($order = Criteria::ASC)

Order by the version column

ChildProductVersionQuery
orderByVersionCreatedAt($order = Criteria::ASC)

Order by the versioncreatedat column

ChildProductVersionQuery
orderByVersionCreatedBy($order = Criteria::ASC)

Order by the versioncreatedby column

ChildProductVersionQuery
groupById()

Group by the id column

ChildProductVersionQuery
groupByTaxRuleId()

Group by the taxruleid column

ChildProductVersionQuery
groupByRef()

Group by the ref column

ChildProductVersionQuery
groupByVisible()

Group by the visible column

ChildProductVersionQuery
groupByPosition()

Group by the position column

ChildProductVersionQuery
groupByTemplateId()

Group by the template_id column

ChildProductVersionQuery
groupByBrandId()

Group by the brand_id column

ChildProductVersionQuery
groupByVirtual()

Group by the virtual column

ChildProductVersionQuery
groupByCreatedAt()

Group by the created_at column

ChildProductVersionQuery
groupByUpdatedAt()

Group by the updated_at column

ChildProductVersionQuery
groupByVersion()

Group by the version column

ChildProductVersionQuery
groupByVersionCreatedAt()

Group by the versioncreatedat column

ChildProductVersionQuery
groupByVersionCreatedBy()

Group by the versioncreatedby column

ChildProductVersionQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildProductVersionQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildProductVersionQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildProductVersionQuery
leftJoinProduct($relationAlias = null)

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

ChildProductVersionQuery
rightJoinProduct($relationAlias = null)

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

ChildProductVersionQuery
innerJoinProduct($relationAlias = null)

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

ChildProductVersion
findOne( ConnectionInterface $con = null)

Return the first ChildProductVersion matching the query

ChildProductVersion
findOneOrCreate( ConnectionInterface $con = null)

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

ChildProductVersion
findOneById( int $id)

Return the first ChildProductVersion filtered by the id column

ChildProductVersion
findOneByTaxRuleId( int $tax_rule_id)

Return the first ChildProductVersion filtered by the taxruleid column

ChildProductVersion
findOneByRef( string $ref)

Return the first ChildProductVersion filtered by the ref column

ChildProductVersion
findOneByVisible( int $visible)

Return the first ChildProductVersion filtered by the visible column

ChildProductVersion
findOneByPosition( int $position)

Return the first ChildProductVersion filtered by the position column

ChildProductVersion
findOneByTemplateId( int $template_id)

Return the first ChildProductVersion filtered by the template_id column

ChildProductVersion
findOneByBrandId( int $brand_id)

Return the first ChildProductVersion filtered by the brand_id column

ChildProductVersion
findOneByVirtual( int $virtual)

Return the first ChildProductVersion filtered by the virtual column

ChildProductVersion
findOneByCreatedAt( string $created_at)

Return the first ChildProductVersion filtered by the created_at column

ChildProductVersion
findOneByUpdatedAt( string $updated_at)

Return the first ChildProductVersion filtered by the updated_at column

ChildProductVersion
findOneByVersion( int $version)

Return the first ChildProductVersion filtered by the version column

ChildProductVersion
findOneByVersionCreatedAt( string $version_created_at)

Return the first ChildProductVersion filtered by the versioncreatedat column

ChildProductVersion
findOneByVersionCreatedBy( string $version_created_by)

Return the first ChildProductVersion filtered by the versioncreatedby column

array
findById( int $id)

Return ChildProductVersion objects filtered by the id column

array
findByTaxRuleId( int $tax_rule_id)

Return ChildProductVersion objects filtered by the taxruleid column

array
findByRef( string $ref)

Return ChildProductVersion objects filtered by the ref column

array
findByVisible( int $visible)

Return ChildProductVersion objects filtered by the visible column

array
findByPosition( int $position)

Return ChildProductVersion objects filtered by the position column

array
findByTemplateId( int $template_id)

Return ChildProductVersion objects filtered by the template_id column

array
findByBrandId( int $brand_id)

Return ChildProductVersion objects filtered by the brand_id column

array
findByVirtual( int $virtual)

Return ChildProductVersion objects filtered by the virtual column

array
findByCreatedAt( string $created_at)

Return ChildProductVersion objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildProductVersion objects filtered by the updated_at column

array
findByVersion( int $version)

Return ChildProductVersion objects filtered by the version column

array
findByVersionCreatedAt( string $version_created_at)

Return ChildProductVersion objects filtered by the versioncreatedat column

array
findByVersionCreatedBy( string $version_created_by)

Return ChildProductVersion objects filtered by the versioncreatedby column

Details

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

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

Returns a new ChildProductVersionQuery object.

Parameters

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

Return Value

ProductVersionQuery

at line 145
ProductVersion|array|mixed findPk($key, $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(array(12, 34), $con);

Parameters

$key
$con

Return Value

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

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

Find objects by primary key $objs = $c->findPks(array(array(12, 56), array(832, 123), array(123, 456)), $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 249
ProductVersionQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

ProductVersionQuery The current query, for fluid interface

at line 264
ProductVersionQuery 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

ProductVersionQuery The current query, for fluid interface

at line 299
ProductVersionQuery 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

ProductVersionQuery The current query, for fluid interface

See also

filterByProduct()

at line 340
ProductVersionQuery filterByTaxRuleId( mixed $taxRuleId = null, string $comparison = null)

Filter the query on the taxruleid column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 378
ProductVersionQuery filterByRef( string $ref = null, string $comparison = null)

Filter the query on the ref column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 410
ProductVersionQuery filterByVisible( mixed $visible = null, string $comparison = null)

Filter the query on the visible column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 451
ProductVersionQuery 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

ProductVersionQuery The current query, for fluid interface

at line 492
ProductVersionQuery filterByTemplateId( mixed $templateId = null, string $comparison = null)

Filter the query on the template_id column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 533
ProductVersionQuery filterByBrandId( mixed $brandId = null, string $comparison = null)

Filter the query on the brand_id column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 574
ProductVersionQuery filterByVirtual( mixed $virtual = null, string $comparison = null)

Filter the query on the virtual column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 617
ProductVersionQuery 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

ProductVersionQuery The current query, for fluid interface

at line 660
ProductVersionQuery 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

ProductVersionQuery The current query, for fluid interface

at line 701
ProductVersionQuery filterByVersion( mixed $version = null, string $comparison = null)

Filter the query on the version column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 744
ProductVersionQuery filterByVersionCreatedAt( mixed $versionCreatedAt = null, string $comparison = null)

Filter the query on the versioncreatedat column

Example usage: $query->filterByVersionCreatedAt('2011-03-14'); // WHERE versioncreatedat = '2011-03-14' $query->filterByVersionCreatedAt('now'); // WHERE versioncreatedat = '2011-03-14' $query->filterByVersionCreatedAt(array('max' => 'yesterday')); // WHERE versioncreatedat > '2011-03-13'

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 782
ProductVersionQuery filterByVersionCreatedBy( string $versionCreatedBy = null, string $comparison = null)

Filter the query on the versioncreatedby column

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

Parameters

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

ProductVersionQuery The current query, for fluid interface

at line 804
ProductVersionQuery 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

ProductVersionQuery The current query, for fluid interface

at line 829
ProductVersionQuery 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

ProductVersionQuery The current query, for fluid interface

at line 864
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()

at line 878
ProductVersionQuery prune( ProductVersion $productVersion = null)

Exclude object from result

Parameters

ProductVersion $productVersion Object to remove from the list of results

Return Value

ProductVersionQuery The current query, for fluid interface

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

Deletes all rows from the product_version table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

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

Performs a DELETE on the database, given a ChildProductVersion 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 92
ChildProductVersionQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByTaxRuleId($order = Criteria::ASC)

Order by the taxruleid column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByRef($order = Criteria::ASC)

Order by the ref column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByVisible($order = Criteria::ASC)

Order by the visible column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByPosition($order = Criteria::ASC)

Order by the position column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByTemplateId($order = Criteria::ASC)

Order by the template_id column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByBrandId($order = Criteria::ASC)

Order by the brand_id column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByVirtual($order = Criteria::ASC)

Order by the virtual column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByVersion($order = Criteria::ASC)

Order by the version column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByVersionCreatedAt($order = Criteria::ASC)

Order by the versioncreatedat column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery orderByVersionCreatedBy($order = Criteria::ASC)

Order by the versioncreatedby column

Parameters

$order

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupById()

Group by the id column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByTaxRuleId()

Group by the taxruleid column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByRef()

Group by the ref column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByVisible()

Group by the visible column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByPosition()

Group by the position column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByTemplateId()

Group by the template_id column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByBrandId()

Group by the brand_id column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByVirtual()

Group by the virtual column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByVersion()

Group by the version column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByVersionCreatedAt()

Group by the versioncreatedat column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery groupByVersionCreatedBy()

Group by the versioncreatedby column

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery leftJoinProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery rightJoinProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersionQuery innerJoinProduct($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildProductVersionQuery

at line 92
ChildProductVersion findOne( ConnectionInterface $con = null)

Return the first ChildProductVersion matching the query

Parameters

ConnectionInterface $con

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneById( int $id)

Return the first ChildProductVersion filtered by the id column

Parameters

int $id

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByTaxRuleId( int $tax_rule_id)

Return the first ChildProductVersion filtered by the taxruleid column

Parameters

int $tax_rule_id

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByRef( string $ref)

Return the first ChildProductVersion filtered by the ref column

Parameters

string $ref

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByVisible( int $visible)

Return the first ChildProductVersion filtered by the visible column

Parameters

int $visible

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByPosition( int $position)

Return the first ChildProductVersion filtered by the position column

Parameters

int $position

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByTemplateId( int $template_id)

Return the first ChildProductVersion filtered by the template_id column

Parameters

int $template_id

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByBrandId( int $brand_id)

Return the first ChildProductVersion filtered by the brand_id column

Parameters

int $brand_id

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByVirtual( int $virtual)

Return the first ChildProductVersion filtered by the virtual column

Parameters

int $virtual

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByCreatedAt( string $created_at)

Return the first ChildProductVersion filtered by the created_at column

Parameters

string $created_at

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByUpdatedAt( string $updated_at)

Return the first ChildProductVersion filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByVersion( int $version)

Return the first ChildProductVersion filtered by the version column

Parameters

int $version

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByVersionCreatedAt( string $version_created_at)

Return the first ChildProductVersion filtered by the versioncreatedat column

Parameters

string $version_created_at

Return Value

ChildProductVersion

at line 92
ChildProductVersion findOneByVersionCreatedBy( string $version_created_by)

Return the first ChildProductVersion filtered by the versioncreatedby column

Parameters

string $version_created_by

Return Value

ChildProductVersion

at line 92
array findById( int $id)

Return ChildProductVersion objects filtered by the id column

Parameters

int $id

Return Value

array

at line 92
array findByTaxRuleId( int $tax_rule_id)

Return ChildProductVersion objects filtered by the taxruleid column

Parameters

int $tax_rule_id

Return Value

array

at line 92
array findByRef( string $ref)

Return ChildProductVersion objects filtered by the ref column

Parameters

string $ref

Return Value

array

at line 92
array findByVisible( int $visible)

Return ChildProductVersion objects filtered by the visible column

Parameters

int $visible

Return Value

array

at line 92
array findByPosition( int $position)

Return ChildProductVersion objects filtered by the position column

Parameters

int $position

Return Value

array

at line 92
array findByTemplateId( int $template_id)

Return ChildProductVersion objects filtered by the template_id column

Parameters

int $template_id

Return Value

array

at line 92
array findByBrandId( int $brand_id)

Return ChildProductVersion objects filtered by the brand_id column

Parameters

int $brand_id

Return Value

array

at line 92
array findByVirtual( int $virtual)

Return ChildProductVersion objects filtered by the virtual column

Parameters

int $virtual

Return Value

array

at line 92
array findByCreatedAt( string $created_at)

Return ChildProductVersion objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 92
array findByUpdatedAt( string $updated_at)

Return ChildProductVersion objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array

at line 92
array findByVersion( int $version)

Return ChildProductVersion objects filtered by the version column

Parameters

int $version

Return Value

array

at line 92
array findByVersionCreatedAt( string $version_created_at)

Return ChildProductVersion objects filtered by the versioncreatedat column

Parameters

string $version_created_at

Return Value

array

at line 92
array findByVersionCreatedBy( string $version_created_by)

Return ChildProductVersion objects filtered by the versioncreatedby column

Parameters

string $version_created_by

Return Value

array