Florentine,
Use the 'EntityList' output for the EntityContainer to access the entities inside the container. For example, if the entities have an attribute 'attribA', then the following expression would return this attribute's value for the first entity in the EntityContainer:
'[EntityContainer1].EntityList(1).attribA'
You may need to ensure that the container has at least one entity. For example, the following expression returns -1 if the container is empty:
'list = [EntityContainer1].EntityList; size(list) == 0 ? -1 : list(1).attribA'
Note that a local variable 'list' is used to simplify the expression.
Harry