OrderProductAttributeCombinationQuery
class OrderProductAttributeCombinationQuery extends ModelCriteria
Base class that represents a query for the 'orderproductattribute_combination' table.
Methods
Initializes internal state of \Thelia\Model\Base\OrderProductAttributeCombinationQuery object.
Returns a new ChildOrderProductAttributeCombinationQuery object.
Find object by primary key.
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Filter the query by primary key
Filter the query by a list of primary keys
Filter the query on the id column
Filter the query on the orderproductid column
Filter the query on the attribute_title column
Filter the query on the attribute_chapo column
Filter the query on the attribute_description column
Filter the query on the attribute_postscriptum column
Filter the query on the attributeavtitle column
Filter the query on the attributeavchapo column
Filter the query on the attributeavdescription column
Filter the query on the attributeavpostscriptum column
Filter the query on the created_at column
Filter the query on the updated_at column
Filter the query by a related \Thelia\Model\OrderProduct object
Adds a JOIN clause to the query using the OrderProduct relation
Use the OrderProduct relation OrderProduct object
Exclude object from result
Deletes all rows from the orderproductattribute_combination table.
Performs a DELETE on the database, given a ChildOrderProductAttributeCombination or Criteria object OR a primary key value.
Filter by the latest updated
Filter by the latest created
Order by update date desc
Order by update date asc
Order by create date desc
Order by create date asc
Order by the id column
Order by the orderproductid column
Order by the attribute_title column
Order by the attribute_chapo column
Order by the attribute_description column
Order by the attribute_postscriptum column
Order by the attributeavtitle column
Order by the attributeavchapo column
Order by the attributeavdescription column
Order by the attributeavpostscriptum column
Order by the created_at column
Order by the updated_at column
Group by the id column
Group by the orderproductid column
Group by the attribute_title column
Group by the attribute_chapo column
Group by the attribute_description column
Group by the attribute_postscriptum column
Group by the attributeavtitle column
Group by the attributeavchapo column
Group by the attributeavdescription column
Group by the attributeavpostscriptum column
Group by the created_at column
Group by the updated_at column
Adds a LEFT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Adds a INNER JOIN clause to the query
Adds a LEFT JOIN clause to the query using the OrderProduct relation
Adds a RIGHT JOIN clause to the query using the OrderProduct relation
Adds a INNER JOIN clause to the query using the OrderProduct relation
Return the first ChildOrderProductAttributeCombination matching the query
Return the first ChildOrderProductAttributeCombination matching the query, or a new ChildOrderProductAttributeCombination object populated from the query conditions when no match is found
Return the first ChildOrderProductAttributeCombination filtered by the id column
Return the first ChildOrderProductAttributeCombination filtered by the orderproductid column
Return the first ChildOrderProductAttributeCombination filtered by the attribute_title column
Return the first ChildOrderProductAttributeCombination filtered by the attribute_chapo column
Return the first ChildOrderProductAttributeCombination filtered by the attribute_description column
Return the first ChildOrderProductAttributeCombination filtered by the attribute_postscriptum column
Return the first ChildOrderProductAttributeCombination filtered by the attributeavtitle column
Return the first ChildOrderProductAttributeCombination filtered by the attributeavchapo column
Return the first ChildOrderProductAttributeCombination filtered by the attributeavdescription column
Return the first ChildOrderProductAttributeCombination filtered by the attributeavpostscriptum column
Return the first ChildOrderProductAttributeCombination filtered by the created_at column
Return the first ChildOrderProductAttributeCombination filtered by the updated_at column
Return ChildOrderProductAttributeCombination objects filtered by the id column
Return ChildOrderProductAttributeCombination objects filtered by the orderproductid column
Return ChildOrderProductAttributeCombination objects filtered by the attribute_title column
Return ChildOrderProductAttributeCombination objects filtered by the attribute_chapo column
Return ChildOrderProductAttributeCombination objects filtered by the attribute_description column
Return ChildOrderProductAttributeCombination objects filtered by the attribute_postscriptum column
Return ChildOrderProductAttributeCombination objects filtered by the attributeavtitle column
Return ChildOrderProductAttributeCombination objects filtered by the attributeavchapo column
Return ChildOrderProductAttributeCombination objects filtered by the attributeavdescription column
Return ChildOrderProductAttributeCombination objects filtered by the attributeavpostscriptum column
Return ChildOrderProductAttributeCombination objects filtered by the created_at column
Return ChildOrderProductAttributeCombination objects filtered by the updated_at column
Details
at line 98
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\OrderProductAttributeCombination',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\OrderProductAttributeCombinationQuery object.
at line 111
static
OrderProductAttributeCombinationQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildOrderProductAttributeCombinationQuery object.
at line 141
OrderProductAttributeCombination|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);
at line 223
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
at line 244
OrderProductAttributeCombinationQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
at line 257
OrderProductAttributeCombinationQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
at line 281
OrderProductAttributeCombinationQuery
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
at line 324
OrderProductAttributeCombinationQuery
filterByOrderProductId(
mixed $orderProductId = null,
string $comparison = null)
Filter the query on the orderproductid column
Example usage:
$query->filterByOrderProductId(1234); // WHERE orderproductid = 1234
$query->filterByOrderProductId(array(12, 34)); // WHERE orderproductid IN (12, 34)
$query->filterByOrderProductId(array('min' => 12)); // WHERE orderproductid > 12
at line 362
OrderProductAttributeCombinationQuery
filterByAttributeTitle(
string $attributeTitle = null,
string $comparison = null)
Filter the query on the attribute_title column
Example usage:
$query->filterByAttributeTitle('fooValue'); // WHERE attributetitle = 'fooValue'
$query->filterByAttributeTitle('%fooValue%'); // WHERE attributetitle LIKE '%fooValue%'
at line 391
OrderProductAttributeCombinationQuery
filterByAttributeChapo(
string $attributeChapo = null,
string $comparison = null)
Filter the query on the attribute_chapo column
Example usage:
$query->filterByAttributeChapo('fooValue'); // WHERE attributechapo = 'fooValue'
$query->filterByAttributeChapo('%fooValue%'); // WHERE attributechapo LIKE '%fooValue%'
at line 420
OrderProductAttributeCombinationQuery
filterByAttributeDescription(
string $attributeDescription = null,
string $comparison = null)
Filter the query on the attribute_description column
Example usage:
$query->filterByAttributeDescription('fooValue'); // WHERE attributedescription = 'fooValue'
$query->filterByAttributeDescription('%fooValue%'); // WHERE attributedescription LIKE '%fooValue%'
at line 449
OrderProductAttributeCombinationQuery
filterByAttributePostscriptum(
string $attributePostscriptum = null,
string $comparison = null)
Filter the query on the attribute_postscriptum column
Example usage:
$query->filterByAttributePostscriptum('fooValue'); // WHERE attributepostscriptum = 'fooValue'
$query->filterByAttributePostscriptum('%fooValue%'); // WHERE attributepostscriptum LIKE '%fooValue%'
at line 478
OrderProductAttributeCombinationQuery
filterByAttributeAvTitle(
string $attributeAvTitle = null,
string $comparison = null)
Filter the query on the attributeavtitle column
Example usage:
$query->filterByAttributeAvTitle('fooValue'); // WHERE attributeavtitle = 'fooValue'
$query->filterByAttributeAvTitle('%fooValue%'); // WHERE attributeavtitle LIKE '%fooValue%'
at line 507
OrderProductAttributeCombinationQuery
filterByAttributeAvChapo(
string $attributeAvChapo = null,
string $comparison = null)
Filter the query on the attributeavchapo column
Example usage:
$query->filterByAttributeAvChapo('fooValue'); // WHERE attributeavchapo = 'fooValue'
$query->filterByAttributeAvChapo('%fooValue%'); // WHERE attributeavchapo LIKE '%fooValue%'
at line 536
OrderProductAttributeCombinationQuery
filterByAttributeAvDescription(
string $attributeAvDescription = null,
string $comparison = null)
Filter the query on the attributeavdescription column
Example usage:
$query->filterByAttributeAvDescription('fooValue'); // WHERE attributeavdescription = 'fooValue'
$query->filterByAttributeAvDescription('%fooValue%'); // WHERE attributeavdescription LIKE '%fooValue%'
at line 565
OrderProductAttributeCombinationQuery
filterByAttributeAvPostscriptum(
string $attributeAvPostscriptum = null,
string $comparison = null)
Filter the query on the attributeavpostscriptum column
Example usage:
$query->filterByAttributeAvPostscriptum('fooValue'); // WHERE attributeavpostscriptum = 'fooValue'
$query->filterByAttributeAvPostscriptum('%fooValue%'); // WHERE attributeavpostscriptum LIKE '%fooValue%'
at line 599
OrderProductAttributeCombinationQuery
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'
at line 642
OrderProductAttributeCombinationQuery
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'
at line 673
OrderProductAttributeCombinationQuery
filterByOrderProduct(
OrderProduct|ObjectCollection $orderProduct,
string $comparison = null)
Filter the query by a related \Thelia\Model\OrderProduct object
at line 698
OrderProductAttributeCombinationQuery
joinOrderProduct(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderProduct relation
at line 733
OrderProductQuery
useOrderProductQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderProduct relation OrderProduct object
at line 747
OrderProductAttributeCombinationQuery
prune(
OrderProductAttributeCombination $orderProductAttributeCombination = null)
Exclude object from result
at line 762
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the orderproductattribute_combination table.
at line 799
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildOrderProductAttributeCombination or Criteria object OR a primary key value.
at line 840
OrderProductAttributeCombinationQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
at line 852
OrderProductAttributeCombinationQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
at line 862
OrderProductAttributeCombinationQuery
lastUpdatedFirst()
Order by update date desc
at line 872
OrderProductAttributeCombinationQuery
firstUpdatedFirst()
Order by update date asc
at line 882
OrderProductAttributeCombinationQuery
lastCreatedFirst()
Order by create date desc
at line 892
OrderProductAttributeCombinationQuery
firstCreatedFirst()
Order by create date asc
at line 88
ChildOrderProductAttributeCombinationQuery
orderById($order = Criteria::ASC)
Order by the id column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByOrderProductId($order = Criteria::ASC)
Order by the orderproductid column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributeTitle($order = Criteria::ASC)
Order by the attribute_title column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributeChapo($order = Criteria::ASC)
Order by the attribute_chapo column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributeDescription($order = Criteria::ASC)
Order by the attribute_description column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributePostscriptum($order = Criteria::ASC)
Order by the attribute_postscriptum column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributeAvTitle($order = Criteria::ASC)
Order by the attributeavtitle column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributeAvChapo($order = Criteria::ASC)
Order by the attributeavchapo column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributeAvDescription($order = Criteria::ASC)
Order by the attributeavdescription column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByAttributeAvPostscriptum($order = Criteria::ASC)
Order by the attributeavpostscriptum column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
at line 88
ChildOrderProductAttributeCombinationQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
at line 88
ChildOrderProductAttributeCombinationQuery
groupById()
Group by the id column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByOrderProductId()
Group by the orderproductid column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributeTitle()
Group by the attribute_title column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributeChapo()
Group by the attribute_chapo column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributeDescription()
Group by the attribute_description column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributePostscriptum()
Group by the attribute_postscriptum column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributeAvTitle()
Group by the attributeavtitle column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributeAvChapo()
Group by the attributeavchapo column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributeAvDescription()
Group by the attributeavdescription column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByAttributeAvPostscriptum()
Group by the attributeavpostscriptum column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByCreatedAt()
Group by the created_at column
at line 88
ChildOrderProductAttributeCombinationQuery
groupByUpdatedAt()
Group by the updated_at column
at line 88
ChildOrderProductAttributeCombinationQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
at line 88
ChildOrderProductAttributeCombinationQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
at line 88
ChildOrderProductAttributeCombinationQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
at line 88
ChildOrderProductAttributeCombinationQuery
leftJoinOrderProduct($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderProduct relation
at line 88
ChildOrderProductAttributeCombinationQuery
rightJoinOrderProduct($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderProduct relation
at line 88
ChildOrderProductAttributeCombinationQuery
innerJoinOrderProduct($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderProduct relation
at line 88
ChildOrderProductAttributeCombination
findOne(
ConnectionInterface $con = null)
Return the first ChildOrderProductAttributeCombination matching the query
at line 88
ChildOrderProductAttributeCombination
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildOrderProductAttributeCombination matching the query, or a new ChildOrderProductAttributeCombination object populated from the query conditions when no match is found
at line 88
ChildOrderProductAttributeCombination
findOneById(
int $id)
Return the first ChildOrderProductAttributeCombination filtered by the id column
at line 88
ChildOrderProductAttributeCombination
findOneByOrderProductId(
int $order_product_id)
Return the first ChildOrderProductAttributeCombination filtered by the orderproductid column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributeTitle(
string $attribute_title)
Return the first ChildOrderProductAttributeCombination filtered by the attribute_title column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributeChapo(
string $attribute_chapo)
Return the first ChildOrderProductAttributeCombination filtered by the attribute_chapo column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributeDescription(
string $attribute_description)
Return the first ChildOrderProductAttributeCombination filtered by the attribute_description column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributePostscriptum(
string $attribute_postscriptum)
Return the first ChildOrderProductAttributeCombination filtered by the attribute_postscriptum column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributeAvTitle(
string $attribute_av_title)
Return the first ChildOrderProductAttributeCombination filtered by the attributeavtitle column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributeAvChapo(
string $attribute_av_chapo)
Return the first ChildOrderProductAttributeCombination filtered by the attributeavchapo column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributeAvDescription(
string $attribute_av_description)
Return the first ChildOrderProductAttributeCombination filtered by the attributeavdescription column
at line 88
ChildOrderProductAttributeCombination
findOneByAttributeAvPostscriptum(
string $attribute_av_postscriptum)
Return the first ChildOrderProductAttributeCombination filtered by the attributeavpostscriptum column
at line 88
ChildOrderProductAttributeCombination
findOneByCreatedAt(
string $created_at)
Return the first ChildOrderProductAttributeCombination filtered by the created_at column
at line 88
ChildOrderProductAttributeCombination
findOneByUpdatedAt(
string $updated_at)
Return the first ChildOrderProductAttributeCombination filtered by the updated_at column
at line 88
array
findById(
int $id)
Return ChildOrderProductAttributeCombination objects filtered by the id column
at line 88
array
findByOrderProductId(
int $order_product_id)
Return ChildOrderProductAttributeCombination objects filtered by the orderproductid column
at line 88
array
findByAttributeTitle(
string $attribute_title)
Return ChildOrderProductAttributeCombination objects filtered by the attribute_title column
at line 88
array
findByAttributeChapo(
string $attribute_chapo)
Return ChildOrderProductAttributeCombination objects filtered by the attribute_chapo column
at line 88
array
findByAttributeDescription(
string $attribute_description)
Return ChildOrderProductAttributeCombination objects filtered by the attribute_description column
at line 88
array
findByAttributePostscriptum(
string $attribute_postscriptum)
Return ChildOrderProductAttributeCombination objects filtered by the attribute_postscriptum column
at line 88
array
findByAttributeAvTitle(
string $attribute_av_title)
Return ChildOrderProductAttributeCombination objects filtered by the attributeavtitle column
at line 88
array
findByAttributeAvChapo(
string $attribute_av_chapo)
Return ChildOrderProductAttributeCombination objects filtered by the attributeavchapo column
at line 88
array
findByAttributeAvDescription(
string $attribute_av_description)
Return ChildOrderProductAttributeCombination objects filtered by the attributeavdescription column
at line 88
array
findByAttributeAvPostscriptum(
string $attribute_av_postscriptum)
Return ChildOrderProductAttributeCombination objects filtered by the attributeavpostscriptum column
at line 88
array
findByCreatedAt(
string $created_at)
Return ChildOrderProductAttributeCombination objects filtered by the created_at column
at line 88
array
findByUpdatedAt(
string $updated_at)
Return ChildOrderProductAttributeCombination objects filtered by the updated_at column