Top "Arraycollection" questions

The ArrayCollection class is a wrapper class that exposes an Array as a collection in Flex which can be accessed and manipulated.

Doctrine 2 ArrayCollection filter method

Can I filter out results from an arrayCollection in Doctrine 2 while using lazy loading? For example, // users = ArrayCollection with User …

orm doctrine-orm lazy-loading arraycollection
How to merge two php Doctrine 2 ArrayCollection()

Is there any convenience method that allows me to concatenate two Doctrine ArrayCollection()? something like: $collection1 = new ArrayCollection(); $collection2 = new …

php symfony doctrine-orm arraycollection
Check if ArrayCollection is empty

I have an Entity Order which hold Suppliers in an Arraycollection. In my controller i want to check if this …

symfony arraycollection symfony-2.2
Doctrine2: check if exists value in Doctrine Collection

How can I check that given value exists in Doctrine Collection (ManyToMany relation) field? For example I try to: $someClass = $…

symfony doctrine-orm arraycollection
symfony2 form multiple select with arraycollection

I would like to create a form to edit my users. Users and roles connected with ManyToMany. In UserUsers entity …

forms symfony entity arraycollection multipleselection
Flex: Convert ArrayCollection to XML

In Flex, it's easy to convert the XML to Object and to ArrayCollection by using var decoder:SimpleXMLDecoder = new SimpleXMLDecoder(); …

xml apache-flex arraycollection
Symfony2: How to remove an element from a Doctrine ArrayCollection (many-to-many relation)?

I use the following code for my many-to-many relation in symfony2 (doctrine) Entity: /** * @ORM\ManyToMany(targetEntity="BizTV\ContainerManagementBundle\Entity\Container", …

php database symfony doctrine arraycollection
Object of class Doctrine\ORM\PersistentCollection could not be converted to string

I made a web application with Symfony2, in which a User has an array correlation ManytoMany with the entity Mission. …

php symfony doctrine arraycollection
Array Collection, symfony: add a relation

I'm new of Symfony and php, and I'm trying to understand, without outcome, the array collection. Now I have two …

php symfony many-to-many arraycollection
Iterating over ArrayCollection while adding and removing items

I want to iterate over an ArrayCollection in Flex while there can be items added and removed. Since i didn't …

apache-flex actionscript arraycollection