In a LIB project, I wanted to create a utility function that needs to create an EntiyCollection.
Since this LIB DLL does not reference the DAL, I created an instance of EntityCollectionNonGeneric (I do have the EntityFactoryToUse in this function).
The problem arises in the UI when I need to convert the EntityCollectionNonGeneric to EntityCollection as that is rejected by LLBL.
Is there away to do this or is there a better way to create and populate EntityCollections in LIB style projects having only an instance of the EntityFactoryToUse?