$model = Instances::find()->with('access')->all();
// допустим есть посты и авторы, автор - реляция
$posts = Post::find()
->joinWith('author') // это реляция
->where(['like', 'author.name', $searchword]) // а это условие по реляции
->all();