Hello,
I'm trying to project an entity view onto a entity collection, but am getting a "Cannot resolve method" exception in the VS.Net IDE. The Entity View's CreateProjection method overload I'm attempting to use expects an IEntityCollection type as it's 2nd argument and I'm passing it (ProjectionEntityCollection) an LLBLGen Entity Collection.
someView= new EntityView<SomeEntity>(SourceEntityCollection);
ArrayList propertyProjectors = new ArrayList();
propertyProjectors.Add(new EntityPropertyProjector(SomeEntityCollectionFields.Field1, "Field1"));
propertyProjectors.Add(new EntityPropertyProjector(SomeEntityCollectionFields.Field2, "Field2"));
tierFactorView.CreateProjection(propertyProjectors, ProjectionEntityCollection); - same type as the SourceEntityCollection, but method won't resolve
Please advise.