/**
* This is the model class for table "{{%employee}}".
*
* @property int $id
* @property string $account username
* ...
*/
abstract class UserEntity extends BaseModel{
...
}
class User extends UserEntity{
}
Employee::find()->where(['id']);//Attribute autocomplete for "where" is invalid.
What steps will reproduce the problem?
What is the expected result?
What do you get instead?
Additional info