Csla readonly collections' performance or .NET? #3418
Unanswered
Chicagoan2016
asked this question in
Questions
Replies: 1 comment 3 replies
-
I'd do some logging or other instrumentation so you can determine if the perf lag is in the server-side code where the list is loaded with data, or on the client side when it is data bound. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We are asked to replace an older MS Access application. The main form in the application is congested (and convoluted). We have around 20 combo boxes with four of the combo boxes have 4-5k items.
No matter what User Interface technology we use in .NET, the time it takes to load the form (and hence combo boxes ) is anywhere from 10 seconds to 20 seconds (I just tried Winforms).
We cache the read-only lists while the application loads so in the main form the collections' data is coming from the cache. We tried loading the combo boxes using async/await and even the older backgroundworker threads.
Nothing is making a difference : )
Here is the funny part, the older Access form load almost instantaneously lol.
What gives?
Kind regards
Beta Was this translation helpful? Give feedback.
All reactions