ICodeIT on Twitter
- RT @majaajam: @JakobStegelmann Man ved bare om den type, der skelner så hårdt - deres børn får lov til at se for meget skrammel. "For børn"… 1 day ago
- RT @SethAbramson: (THREAD) BREAKING: A top Trump ally revealed Trump's impeachment defense today—and it's not what many expected. I break i… 2 weeks ago
iCodeIT
-
Recent Posts
- The Family Page–Part 8, Wish list and Angular.js second try
- The Family Page–Part 8, using Angular.js to show the wish list.
- Creating the Family Page – Part 7, Beginning on the Wish List
- Creating The Family Page – Part 6, Role and User Management
- Creating The Family Page – Part 5, User Account–Password reset
Archives
Categories
Meta
Tag Archives: Linq
LINQ – the order of elements when using Where()
Last week I was asked if the order of elements found using a where clause was guaranteed to be the same as the order of the original collection. That question is hard to answer. In the normal case (where nobody has overwritten … Continue reading
Posted in C#, Linq
Tagged Foreach loop, Iterator, Language Integrated Query, Languages, Linq, Parallel Extensions, Programming
Leave a comment
Performance of Skip and Take in Linq to Objects
Note: This is not relevant for Linq to Sql or Entity framework, where Skip and Take are transalted into their SQL equivalents. This week I had to write some code where some 500.000 objects in a collection had to chopped … Continue reading