Learning about LINQ [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow questions seeking recommendations for books, … Read more
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow questions seeking recommendations for books, … Read more
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, … Read more
This may be a really elementry question but whats a nice way to include multiple children entities when writing a query that spans … Read more
I am trying to use LINQ to create a Dictionary<string, List<CustomObject>> from a List<CustomObject>. I can get this to work using “var”, but … Read more
I know in normal Linq grammar, orderby xxx descending is very easy, but how do I do this in Lambda expression? 6 Answers … Read more
I am using Entity Framework and occasionally i will get this error. EntityCommandExecutionException {“There is already an open DataReader associated with this Command … Read more
Using LINQ, from a List<int>, how can I retrieve a list that contains entries repeated more than once and their values? 11 Answers … Read more
I’d like to do the equivalent of the following in LINQ, but I can’t figure out how: IEnumerable<Item> items = GetItems(); items.ForEach(i => … Read more
I have two tables, movies and categories, and I want to get an ordered list by categoryID first and then by Name. The … Read more