class StateQuery extends ModelCriteria

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

Methods

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

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

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

Returns a new ChildStateQuery object.

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

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

Filter the query on the visible column

filterByIsocode( string $isocode = null, string $comparison = null)

Filter the query on the isocode column

filterByCountryId( mixed $countryId = null, string $comparison = null)

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

filterByCountry( Country|ObjectCollection $country, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Country relation

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

Use the Country relation Country object

filterByTaxRuleCountry( TaxRuleCountry|ObjectCollection $taxRuleCountry, string $comparison = null)

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

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

Adds a JOIN clause to the query using the TaxRuleCountry relation

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

Use the TaxRuleCountry relation TaxRuleCountry object

filterByAddress( Address|ObjectCollection $address, string $comparison = null)

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

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

Adds a JOIN clause to the query using the Address relation

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

Use the Address relation Address object

filterByOrderAddress( OrderAddress|ObjectCollection $orderAddress, string $comparison = null)

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

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

Adds a JOIN clause to the query using the OrderAddress relation

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

Use the OrderAddress relation OrderAddress object

filterByStateI18n( StateI18n|ObjectCollection $stateI18n, string $comparison = null)

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

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

Adds a JOIN clause to the query using the StateI18n relation

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

Use the StateI18n relation StateI18n object

prune( State $state = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the state table.

int
delete( ConnectionInterface $con = null)

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

ChildStateQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildStateQuery
orderByVisible($order = Criteria::ASC)

Order by the visible column

ChildStateQuery
orderByIsocode($order = Criteria::ASC)

Order by the isocode column

ChildStateQuery
orderByCountryId($order = Criteria::ASC)

Order by the country_id column

ChildStateQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildStateQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildStateQuery
groupById()

Group by the id column

ChildStateQuery
groupByVisible()

Group by the visible column

ChildStateQuery
groupByIsocode()

Group by the isocode column

ChildStateQuery
groupByCountryId()

Group by the country_id column

ChildStateQuery
groupByCreatedAt()

Group by the created_at column

ChildStateQuery
groupByUpdatedAt()

Group by the updated_at column

ChildStateQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildStateQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildStateQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildStateQuery
leftJoinCountry($relationAlias = null)

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

ChildStateQuery
rightJoinCountry($relationAlias = null)

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

ChildStateQuery
innerJoinCountry($relationAlias = null)

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

ChildStateQuery
leftJoinTaxRuleCountry($relationAlias = null)

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

ChildStateQuery
rightJoinTaxRuleCountry($relationAlias = null)

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

ChildStateQuery
innerJoinTaxRuleCountry($relationAlias = null)

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

ChildStateQuery
leftJoinAddress($relationAlias = null)

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

ChildStateQuery
rightJoinAddress($relationAlias = null)

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

ChildStateQuery
innerJoinAddress($relationAlias = null)

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

ChildStateQuery
leftJoinOrderAddress($relationAlias = null)

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

ChildStateQuery
rightJoinOrderAddress($relationAlias = null)

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

ChildStateQuery
innerJoinOrderAddress($relationAlias = null)

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

ChildStateQuery
leftJoinStateI18n($relationAlias = null)

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

ChildStateQuery
rightJoinStateI18n($relationAlias = null)

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

ChildStateQuery
innerJoinStateI18n($relationAlias = null)

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

ChildState
findOne( ConnectionInterface $con = null)

Return the first ChildState matching the query

ChildState
findOneOrCreate( ConnectionInterface $con = null)

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

ChildState
findOneById( int $id)

Return the first ChildState filtered by the id column

ChildState
findOneByVisible( int $visible)

Return the first ChildState filtered by the visible column

ChildState
findOneByIsocode( string $isocode)

Return the first ChildState filtered by the isocode column

ChildState
findOneByCountryId( int $country_id)

Return the first ChildState filtered by the country_id column

ChildState
findOneByCreatedAt( string $created_at)

Return the first ChildState filtered by the created_at column

ChildState
findOneByUpdatedAt( string $updated_at)

Return the first ChildState filtered by the updated_at column

array
findById( int $id)

Return ChildState objects filtered by the id column

array
findByVisible( int $visible)

Return ChildState objects filtered by the visible column

array
findByIsocode( string $isocode)

Return ChildState objects filtered by the isocode column

array
findByCountryId( int $country_id)

Return ChildState objects filtered by the country_id column

array
findByCreatedAt( string $created_at)

Return ChildState objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildState objects filtered by the updated_at column

Details

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

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

Returns a new ChildStateQuery object.

Parameters

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

Return Value

StateQuery

at line 134
State|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

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

at line 216
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 237
StateQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

StateQuery The current query, for fluid interface

at line 250
StateQuery 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

StateQuery The current query, for fluid interface

at line 274
StateQuery 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

StateQuery The current query, for fluid interface

at line 315
StateQuery 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

StateQuery The current query, for fluid interface

at line 353
StateQuery filterByIsocode( string $isocode = null, string $comparison = null)

Filter the query on the isocode column

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

Parameters

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

StateQuery The current query, for fluid interface

at line 387
StateQuery filterByCountryId( mixed $countryId = null, string $comparison = null)

Filter the query on the country_id column

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

Parameters

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

StateQuery The current query, for fluid interface

See also

filterByCountry()

at line 430
StateQuery 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

StateQuery The current query, for fluid interface

at line 473
StateQuery 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

StateQuery The current query, for fluid interface

at line 504
StateQuery filterByCountry( Country|ObjectCollection $country, string $comparison = null)

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

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 529
StateQuery joinCountry( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the Country relation

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 564
CountryQuery useCountryQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

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

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

See also

useQuery()

at line 579
StateQuery filterByTaxRuleCountry( TaxRuleCountry|ObjectCollection $taxRuleCountry, string $comparison = null)

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

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 602
StateQuery joinTaxRuleCountry( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the TaxRuleCountry relation

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 637
TaxRuleCountryQuery useTaxRuleCountryQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

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

See also

useQuery()

at line 652
StateQuery filterByAddress( Address|ObjectCollection $address, string $comparison = null)

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

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 675
StateQuery joinAddress( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the Address relation

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 710
AddressQuery useAddressQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

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

See also

useQuery()

at line 725
StateQuery filterByOrderAddress( OrderAddress|ObjectCollection $orderAddress, string $comparison = null)

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

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 748
StateQuery joinOrderAddress( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

Adds a JOIN clause to the query using the OrderAddress relation

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 783
OrderAddressQuery useOrderAddressQuery( string $relationAlias = null, string $joinType = Criteria::LEFT_JOIN)

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

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

See also

useQuery()

at line 798
StateQuery filterByStateI18n( StateI18n|ObjectCollection $stateI18n, string $comparison = null)

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

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 821
StateQuery joinStateI18n( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the StateI18n relation

Parameters

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

Return Value

StateQuery The current query, for fluid interface

at line 856
StateI18nQuery useStateI18nQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

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

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

See also

useQuery()

at line 870
StateQuery prune( State $state = null)

Exclude object from result

Parameters

State $state Object to remove from the list of results

Return Value

StateQuery The current query, for fluid interface

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

Deletes all rows from the state table.

Parameters

ConnectionInterface $con the connection to use

Return Value

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

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

Performs a DELETE on the database, given a ChildState 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 963
StateQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

StateQuery The current query, for fluid interface

at line 975
StateQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

StateQuery The current query, for fluid interface

at line 985
StateQuery lastUpdatedFirst()

Order by update date desc

Return Value

StateQuery The current query, for fluid interface

at line 995
StateQuery firstUpdatedFirst()

Order by update date asc

Return Value

StateQuery The current query, for fluid interface

at line 1005
StateQuery lastCreatedFirst()

Order by create date desc

Return Value

StateQuery The current query, for fluid interface

at line 1015
StateQuery firstCreatedFirst()

Order by create date asc

Return Value

StateQuery The current query, for fluid interface

at line 1031
StateQuery 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

StateQuery The current query, for fluid interface

at line 1049
StateQuery 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

StateQuery The current query, for fluid interface

at line 1070
StateI18nQuery 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

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

See also

useQuery()

at line 81
ChildStateQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildStateQuery

at line 81
ChildStateQuery orderByVisible($order = Criteria::ASC)

Order by the visible column

Parameters

$order

Return Value

ChildStateQuery

at line 81
ChildStateQuery orderByIsocode($order = Criteria::ASC)

Order by the isocode column

Parameters

$order

Return Value

ChildStateQuery

at line 81
ChildStateQuery orderByCountryId($order = Criteria::ASC)

Order by the country_id column

Parameters

$order

Return Value

ChildStateQuery

at line 81
ChildStateQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildStateQuery

at line 81
ChildStateQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildStateQuery

at line 81
ChildStateQuery groupById()

Group by the id column

Return Value

ChildStateQuery

at line 81
ChildStateQuery groupByVisible()

Group by the visible column

Return Value

ChildStateQuery

at line 81
ChildStateQuery groupByIsocode()

Group by the isocode column

Return Value

ChildStateQuery

at line 81
ChildStateQuery groupByCountryId()

Group by the country_id column

Return Value

ChildStateQuery

at line 81
ChildStateQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildStateQuery

at line 81
ChildStateQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildStateQuery

at line 81
ChildStateQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildStateQuery

at line 81
ChildStateQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildStateQuery

at line 81
ChildStateQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildStateQuery

at line 81
ChildStateQuery leftJoinCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery rightJoinCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery innerJoinCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery leftJoinTaxRuleCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery rightJoinTaxRuleCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery innerJoinTaxRuleCountry($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery leftJoinAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery rightJoinAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery innerJoinAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery leftJoinOrderAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery rightJoinOrderAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery innerJoinOrderAddress($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery leftJoinStateI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery rightJoinStateI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildStateQuery innerJoinStateI18n($relationAlias = null)

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

Parameters

$relationAlias

Return Value

ChildStateQuery

at line 81
ChildState findOne( ConnectionInterface $con = null)

Return the first ChildState matching the query

Parameters

ConnectionInterface $con

Return Value

ChildState

at line 81
ChildState findOneOrCreate( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

ChildState

at line 81
ChildState findOneById( int $id)

Return the first ChildState filtered by the id column

Parameters

int $id

Return Value

ChildState

at line 81
ChildState findOneByVisible( int $visible)

Return the first ChildState filtered by the visible column

Parameters

int $visible

Return Value

ChildState

at line 81
ChildState findOneByIsocode( string $isocode)

Return the first ChildState filtered by the isocode column

Parameters

string $isocode

Return Value

ChildState

at line 81
ChildState findOneByCountryId( int $country_id)

Return the first ChildState filtered by the country_id column

Parameters

int $country_id

Return Value

ChildState

at line 81
ChildState findOneByCreatedAt( string $created_at)

Return the first ChildState filtered by the created_at column

Parameters

string $created_at

Return Value

ChildState

at line 81
ChildState findOneByUpdatedAt( string $updated_at)

Return the first ChildState filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildState

at line 81
array findById( int $id)

Return ChildState objects filtered by the id column

Parameters

int $id

Return Value

array

at line 81
array findByVisible( int $visible)

Return ChildState objects filtered by the visible column

Parameters

int $visible

Return Value

array

at line 81
array findByIsocode( string $isocode)

Return ChildState objects filtered by the isocode column

Parameters

string $isocode

Return Value

array

at line 81
array findByCountryId( int $country_id)

Return ChildState objects filtered by the country_id column

Parameters

int $country_id

Return Value

array

at line 81
array findByCreatedAt( string $created_at)

Return ChildState objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 81
array findByUpdatedAt( string $updated_at)

Return ChildState objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array