I have an entity that looks like this:
/** * @Gedmo\\Tree(type=\"nested\") * @ORM\\Table(name=\"categories\") * @ORM\\Entity() */ class Category extends
You are selecting an object that is not joined. Like said in another answer, you have to do something like :
qb->innerJoin("c.parent", "p")