Tagged Questions
5
votes
1answer
402 views
List queries 20 times faster than IQueryable?
Here is a test that i have setup this evening. It was made to prove something different, but the outcome was not quite as i expected.
I'm running a test with 10000 random queries on an IQueryable ...
4
votes
1answer
629 views
Why is IQueryable twice as fast than IEnumerable when using Linq To Objects
I know the difference between IQueryable and IEnumerable, and I know that collections are supported by Linq To Objects via the IEnumerable interface.
What puzzles me is that queries are executed ...
8
votes
4answers
177 views
What is a good way to to indicate an IEnumerable is “slow” or “fast”?
The answer to What is the expected performance of IEnumerable? says there's no way to know anyting about the performance of iterating an arbitrary IEnumerable. Each iteration could hit a database or ...
0
votes
2answers
303 views
Querying database vs Querying IQueryable in order to create auto-complete functionality
I have a texbox control in my wpf application where I will like to get a auto complete listbox as the user types in. In other words I have something like google's search box:
I have managed to do ...
0
votes
1answer
499 views
Performance of IQueryable versus Dictionary
I'm caching a whole bunch of static metadata in my app at startup. It's from a db and there are tons of Foreign Key relationships. I'm looking into the best way of modelling them.
I've just started ...
0
votes
1answer
50 views
Making linq avoid using in memory filtering where possible
Consider the these two LINQ2SQL data retrieval methods. The first creates a 'proper' SQL statement that filters the data, but requires passing the data context into the method.
The second has a ...
7
votes
3answers
3k views
count VS select in LINQ - which is faster?
I'm using IQueryable<T> interfaces throughout my application and defer execution of SQL on the DB until methods like .ToList()
I will need to find the Count of certain lists sometimes -without- ...