Issue: The best overloaded method match for 'Quotit.BL.EntityManagers.ManagerBase.FetchCollection(Quotit.DAL.HelperClasses.EntityCollection,
SD.LLBLGen.Pro.ORMSupportClasses.IDataAccessAdapter)' has some invalid arguments
Finding: Codes generated as EntityCollection<T> instead of EntityCollection in DAL, but baseManager and EntityManager classes in BL are still using EntityCollection
private EntityCollection<AuctionFilterEntity> _auctionFilter;
private EntityCollection<B2bContactEntity> _b2bContact_;
private EntityCollection<B2bContactEntity> _b2bContact;
Question:
So we have to update all places which return or pass argument as EntityCollection to EntityCollection<T>. Is it correct?