All Questions
3 questions
2
votes
2
answers
128k
views
foreach in list or foreach in list.where [duplicate]
I don't know what to call this question.
This is my example:
foreach (var item in lstItem.Where(item => stock.ItemCode == item.ItemCode))
{
stock.ItemName = item.ItemName;
stock....
4
votes
3
answers
2k
views
Will there be any official LINQ like lambda based library for C++? [closed]
Given C++ gained lambdas with C++11, will there be any LINQ like higher order function library officially supported later? Or is there already such a library used in production quality code?
...
43
votes
10
answers
17k
views
Does the usage of LINQ and Lambda Expressions lead to less readable code? [closed]
I'm having a discussion with a co-worker on Linq, I'll copy here:
Co-Worker: Lets be honest here. Linq
syntax sucks. It's confusing and
non-intuitive.
Me: oh come on, more
confusing than T-SQL?
Co-...