I work on a project which uses Entity Framework 4.0 for data access. I addition to "normal" usage, we also use it to retrieve POCO classes via a ObjectContext.ExecuteStoreQuery which calls a stored procedure. POCO classes are partial and have properties that don't exist in the database. This causes ExecuteStoreQuery to throw a System.IndexOutOfRangeException for each property that cannot be found. The exception is handled internally by the CLR, but it happens all the time and it slows everything down to a crawl. I tried switching to EF 4.1 and using [NotMapped] attribute on properties that don't exist in the db, but the same thing happened.
Is there any way to avoid this? (As the project is in its final stages, major architecture changes are not really an option)