Как сделать это NULL и не NULL с Yii 2 ActiveRecord?
у меня есть таблица, которая имеет поле `activated_at` timestamp NULL DEFAULT NULL
, что означает, что он может содержать метку или он может быть null
и null
по умолчанию.
у меня есть другая модель поиска [GII-generated] со следующей конфигурацией в search()
способ:
public function search($params)
{
$query = User::find();
// add conditions that should always apply here
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
$andFilterWhere = [
'id' => $this->id,
'status' => $this->status,
'role' => $this->role,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
'completed_files' => $this->completed_files,
// 'activated_at' => null,
];
if(!isset($_GET['deleted'])) {
$query->where(['deleted_at' => null]);
$andFilterWhere['deleted_at'] = null;
} else if($_GET['deleted'] === 'true') {
$query->where(['not', ['deleted_at' => null]]);
}
// grid filtering conditions
$query->andFilterWhere(
$andFilterWhere
);
$query->andFilterWhere(['like', 'first_name', $this->username])
->andFilterWhere(['like', 'auth_key', $this->auth_key])
->andFilterWhere(['like', 'password_hash', $this->password_hash])
->andFilterWhere(['like', 'password_reset_token', $this->password_reset_token])
->andFilterWhere(['like', 'email', $this->email])
->andFilterWhere(['like', 'first_name', $this->first_name])
->andFilterWhere(['like', 'last_name', $this->last_name]);
if($this->activated || $this->activated === "0") {
#die(var_dump($this->activated));
if($this->activated === '1') {
// this doesn't filter
$query->andFilterWhere(['not', ['activated_at' => null]]);
} else if($this->activated === '0') {
// this doesn't either
$query->andFilterWhere(['activated_at', null]);
}
}
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
return $dataProvider;
}
Да, я поставил activated
свойство в моем классе:
public $activated;
и меня rules()
метод следующим образом:
public function rules()
{
return [
[['id', 'status', 'role', 'created_at', 'updated_at', 'completed_files'], 'integer'],
['activated', 'string'],
[['username', 'first_name', 'last_name', 'auth_key', 'password_hash', 'password_reset_token', 'email', 'deleted_at', 'completed_files', 'activated_at'], 'safe'],
];
}
то, что я пытался установить в search()
способ есть фильтр по полю activated_at
в зависимости от $activated
значение (см. выше код):
if($this->activated || $this->activated === "0") {
#die(var_dump($this->activated));
if($this->activated === '1') {
// this doesn't filter
$query->andFilterWhere(['not', ['activated_at' => null]]);
} else if($this->activated === '0') {
// this doesn't either
$query->andFilterWhere(['activated_at', null]);
$andFilterWhere['activated_at'] = null;
}
}
С GridView
- все остальные фильтры работают, кроме этого.
что я здесь делаю не так?
и как правильно делать такого рода запросы:
IS NULL something
IS NOT NULL something
С Yii 2-х ActiveRecord
конструктор запросов?
EDIT: строку: if(!isset($_GET['deleted']))
используется для чего-то еще и это обычно работает.
2 ответов
Если я правильно понимаю, вы можете использовать andWhere
->andWhere(['not', ['activated_at' => null]])
но andFilterWhere в execute, где связанное значение не равно null
от doc http://www.yiiframework.com/doc-2.0/yii-db-query.html
andFilterWhere () добавляет дополнительное условие WHERE к существующий, но игнорирует пустые операнды.
для этого выражения:
WHERE activated_at IS NULL
попробуйте это (это работает):
->andWhere(['is', 'activated_at', new \yii\db\Expression('null')]),