php - inner-join doctrine data fetch -


i want fetch data doctrine ---

example --- (mybundle:myentityone) --- $id need find name, name connected entiry named "myentitytwo".

than (mybundle:myentitytwo) --- need find $item based on name got "myentityone".

can have idea how write query it.

what kind of relationship between entityone , entitytwo? first define relationship between them in entityone , entitytwo

on onetomany this: 1 entityone have many entitytwo use query in entityrepository on entityone:

 public function findallitems()     {         $em = $this->getentitymanager();         $qb = $em->createquerybuilder();         $query = $qb->select("o","t")                 ->from($this->getentityname(), 'o')                 ->innerjoin("o.name","t")                 ;         return $query->getquery()->getresult();      } 

Comments

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -