Domande taggate «laravel-query-builder»


21
Come creare una query a più clausole Where utilizzando Laravel Eloquent?
Sto usando il generatore di query Laravel Eloquent e ho una query in cui voglio un WHERE clausola a più condizioni. Funziona, ma non è elegante. Esempio: $results = User::where('this', '=', 1) ->where('that', '=', 1) ->where('this_too', '=', 1) ->where('that_too', '=', 1) ->where('this_as_well', '=', 1) ->where('that_as_well', '=', 1) ->where('this_one_too', '=', 1) …



13
Ottieni colonne specifiche usando la funzione "With ()" in Laravel Eloquent
Ho due tavoli Usere Post. Uno Userpuò avere molti postse uno postappartiene a uno solo user. Nel mio Usermodello ho una hasManyrelazione ... public function post(){ return $this->hasmany('post'); } E nel mio postmodello ho una belongsTorelazione ... public function user(){ return $this->belongsTo('user'); } Ora voglio unire queste due tabelle usando …

20
Ottieni la query eseguita in Laravel 3/4
Come posso recuperare la query SQL eseguita non elaborata in Laravel 3/4 utilizzando Laravel Query Builder o Eloquent ORM? Ad esempio, qualcosa del genere: DB::table('users')->where_status(1)->get(); O: (posts (id, user_id, ...)) User::find(1)->posts->get(); Altrimenti, almeno come posso salvare tutte le query eseguite su laravel.log?


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.