The AddNew() logic in the standard Silverlight PagedCollectionView calls the default constructor for the type, adds the new object to the collection, and then if it's an IEditableObject calls BeginEdit(). Unfortunately, in DevForce we currently require that the entity is already attached to an EntityManager before allowing BeginEdit to proceed.
This is a hack, but to work around the problem you can listen for CollectionChanged events on the PCV. In your handler if the Action is Add you can then add the entity to an EntityManager. This is taking advantage of the fact that the CollectionChanged event fires before the BeginEdit call.
The DevForce PagedCollectionView does do the AddEntity logic for you when AddNew() is called, but the DevForce PCV has some other issues and may not be suitable for you, at least in release 5.2.1.