As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, ...
-
June 3, 2022
- 0 Comments
This may be a really elementry question but whats a nice way to include multiple children entities when writing a query that spans ...
-
June 1, 2022
- 0 Comments
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 ...
-
May 29, 2022
- 0 Comments
I know in normal Linq grammar, orderby xxx descending is very easy, but how do I do this in Lambda expression? 6 Answers ...
-
May 21, 2022
- 0 Comments
I am using Entity Framework and occasionally i will get this error. EntityCommandExecutionException {"There is already an open DataReader associated with this Command ...
-
May 16, 2022
- 0 Comments
Using LINQ, from a List<int>, how can I retrieve a list that contains entries repeated more than once and their values? 11 Answers ...
-
May 5, 2022
- 0 Comments
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 => ...
-
April 20, 2022
- 0 Comments
I have two tables, movies and categories, and I want to get an ordered list by categoryID first and then by Name. The ...
-
April 11, 2022
- 0 Comments