I have a WPF DataGrid that will be populated from a data table having more than 250K rows. I am using Entity Framework to connect to the DataBase. Its taking around 30-45 seconds to load the DataGrid. Is there any way to do it faster?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes. DO NOT LOAD 250.000 rows.
Or: realize it ha little to do with the WPF grid but with the fact that laoding 250.000 rows though the network takes time.
Or: realize it is bad programming practice to load more rows than the user will likely utilize.