Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question
Just for test what happens if you use class which is not mapped in EDMX? – Ladislav Mrnka May 8 '12 at 10:19
The POCOs in question are not mapped in EDMX. – Luka Šverko May 8 '12 at 11:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.