How can I get the last insert id with doctrine 2 ORM? I didn't find this in the documentation of doctrine, is this even possible?
I had to use this after the flush to get the last insert id:
$em->persist($user); $em->flush(); $user->getId();
1.4m articles
1.4m replys
5 comments
57.0k users