本文整理汇总了PHP中TRepository::where方法的典型用法代码示例。如果您正苦于以下问题:PHP TRepository::where方法的具体用法?PHP TRepository::where怎么用?PHP TRepository::where使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TRepository
的用法示例。
在下文中一共展示了TRepository::where方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
try {
TTransaction::open('samples');
$repository = new TRepository('Customer');
$count = $repository->where('name', 'like', 'Rafael%', TExpression::OR_OPERATOR)->where('name', 'like', 'Ana%', TExpression::OR_OPERATOR)->count();
new TMessage('info', "Total of found customers: {$count} <br>\n");
TTransaction::close();
} catch (Exception $e) {
new TMessage('error', $e->getMessage());
}
}
示例2: __construct
public function __construct()
{
parent::__construct();
try {
TTransaction::open('samples');
$repository = new TRepository('Customer');
$repository->where('address', 'like', 'Rua Porto%')->where('gender', '=', 'M')->delete();
new TMessage('info', 'Records Deleted');
TTransaction::close();
} catch (Exception $e) {
new TMessage('error', $e->getMessage());
}
}
示例3: __construct
public function __construct()
{
parent::__construct();
try {
TTransaction::open('samples');
$repository = new TRepository('Customer');
$customers = $repository->where('gender', '=', 'M')->where('name', 'like', 'A%')->load();
foreach ($customers as $customer) {
echo $customer->id . ' - ' . $customer->name . '<br>';
}
TTransaction::close();
} catch (Exception $e) {
new TMessage('error', $e->getMessage());
}
}
示例4: onReload
/**
* method onReload()
* Load the datagrid with the database objects
*/
function onReload($param = NULL)
{
try {
// open a transaction with database 'atividade'
TTransaction::open('atividade');
// creates a repository for Atividade
$repository = new TRepository('Atividade');
$limit = 15;
// creates a criteria
$criteria = new TCriteria();
$criHoras = new TCriteria();
$criteria2 = new TCriteria();
$criHoras2 = new TCriteria();
$calculaHoras = null;
$pesquisaNormal = null;
$newparam = $param;
// define new parameters
if (isset($newparam['order']) and $newparam['order'] == 'ticket->titulo') {
$newparam['order'] = '(select titulo from ticket where ticket_id = id)';
}
if (isset($newparam['order']) and $newparam['order'] == 'pessoa->pessoa_nome') {
$newparam['order'] = '(select pessoa_nome from tbz_pessoas where pessoa_codigo = colaborador_id)';
}
if (isset($newparam['order']) and $newparam['order'] == 'tipo_atividade->nome') {
$newparam['order'] = '(select nome from tipo_atividade where tipo_atividade_id = id)';
}
if (isset($newparam['order']) and $newparam['order'] == 'sistema->nome') {
$newparam['order'] = '(select nome from sistema where sistema_id = id)';
}
// default order
if (empty($newparam['order'])) {
$newparam['order'] = 'data_atividade desc, id ';
$newparam['direction'] = 'desc';
}
$criteria->setProperties($newparam);
// order, offset
$criteria->setProperty('limit', $limit);
if (TSession::getValue('AtividadeList_filter_id')) {
$criteria->add(TSession::getValue('AtividadeList_filter_id'));
// add the session filter
$criHoras->add(TSession::getValue('AtividadeList_filter_id'));
// add the session filter
$calculaHoras = true;
$pesquisaNormal = true;
}
if (TSession::getValue('AtividadeList_filter_data_atividade_inicial')) {
$criteria->add(TSession::getValue('AtividadeList_filter_data_atividade_inicial'));
// add the session filter
$criHoras->add(TSession::getValue('AtividadeList_filter_data_atividade_inicial'));
// add the session filter
$calculaHoras = true;
$pesquisaNormal = true;
}
if (TSession::getValue('AtividadeList_filter_data_atividade_final')) {
$criteria->add(TSession::getValue('AtividadeList_filter_data_atividade_final'));
// add the session filter
$criHoras->add(TSession::getValue('AtividadeList_filter_data_atividade_final'));
// add the session filter
$calculaHoras = true;
$pesquisaNormal = true;
}
if (TSession::getValue('AtividadeList_filter_solicitante_id')) {
$criteria->add(TSession::getValue('AtividadeList_filter_solicitante_id'));
// add the session filter
$criHoras->add(TSession::getValue('AtividadeList_filter_solicitante_id'));
// add the session filter
$calculaHoras = true;
$pesquisaNormal = true;
}
if (TSession::getValue('AtividadeList_filter_colaborador_id')) {
$criteria->add(TSession::getValue('AtividadeList_filter_colaborador_id'));
// add the session filter
$criHoras->add(TSession::getValue('AtividadeList_filter_colaborador_id'));
// add the session filter
$calculaHoras = true;
$pesquisaNormal = true;
}
if (TSession::getValue('AtividadeList_filter_tipo_atividade_id')) {
$criteria->add(TSession::getValue('AtividadeList_filter_tipo_atividade_id'));
// add the session filter
$criHoras->add(TSession::getValue('AtividadeList_filter_tipo_atividade_id'));
// add the session filter
$calculaHoras = true;
$pesquisaNormal = true;
}
if (TSession::getValue('AtividadeList_filter_ticket_id')) {
$criteria->add(TSession::getValue('AtividadeList_filter_ticket_id'));
// add the session filter
$criHoras->add(TSession::getValue('AtividadeList_filter_ticket_id'));
// add the session filter
$calculaHoras = true;
$pesquisaNormal = true;
}
if (TSession::getValue('AtividadeList_filter_pesquisa_master')) {
try {
TTransaction::open('atividade');
//.........这里部分代码省略.........
示例5: getCustomerSales
public static function getCustomerSales($customer_id)
{
$repository = new TRepository('Sale');
return $repository->where('customer_id', '=', $customer_id)->load();
}