I ve searched online to fix the insert performance issue related to the EF4. I just wonder why there is nothing like autodetectchangesenabled(> EF4) property exposed here in EF4 to improve the performance when the system is loaded with too much data.
I am doing load testing with following scenario. Lets say Students are attending online test with 50 questions and the backend logic has to update the score for 50 questions at the end of the test. number of students attending per session is 20000. In a day there are 5 sessions. The problem happens after 3rd session starts where time to update the score for the student takes more time. I know since entity framework keeps track of changes it is taking time to insert.
Please let me know how to handle this in entity framework 4.
Thanks In Advance, Murali K