1
vote
2answers
36 views

List<Info> where Info has Last and First properties map to Dictionary<Last,List<First>>

If I have a class of type class Info { public Info(string first, string last) { this.First = first; this.Last = last; } string First { get; private set; } string Last { get; private set; ...
2
votes
1answer
44 views

Runtime creation of LINQ expression

Say I have this expression: int setsize = 20; Expression<Func<Foo, bool>> predicate = x => x.Seed % setsize == 1 || x.Seed % setsize == 4; ...
0
votes
2answers
43 views

LINQ to Objects converting to list to display in gridview

I am trying to use LINQ to Objects to bind a list of books to a gridview. Author and Book are custom objects, where "Books" is defined in the Author class as a list. List<Author> authors = ...
0
votes
1answer
24 views

How use LINQ to find entities where a list of sub entities contains another list

I have a complex object which contains 2 lists of more complex objects. The first object is as follows: public object1 { public string Name { get; set; } public virtual ...
0
votes
1answer
76 views

LINQ not working

I’ve a class as :- Class EmployeesList { public string Category{get;set;} public string Name{get;set;} } And a list<EmployeesList> as ListOfEmployee :- Category = “AA” Name= “A” ...
0
votes
2answers
61 views

LINQ to Objects

I have an object, built upon a XML schema and want to use LINQ to get the data out of it which I'm interested in :) The structure look like the following example : SimulationStep [1..n] - ...
0
votes
3answers
55 views

How to do LINQ Cross Join With Dot Notation

I know how to write a query notation join in dot notation, but how do you write a cross join in dot notation? List<Alpha> als = new List<Alpha>{new Alpha(), new Alpha()}; ...
0
votes
2answers
60 views

Remove and reorder list elments

Is it possible to solve the following problem WITHOUT using C# loop (foreach; for; while; etc) but only C# Linq or lambda expressions? Problem: Given a list of Task objects and a list of removed ...
0
votes
1answer
59 views

How to get the correct data with a linq statement

The question evolved from the original post, so to broaden the results I have added a seperate question. the original quest was answered, but in doing so I ran into a new problem that has stumped me. ...
2
votes
1answer
25 views

IEnumerable query with GroupBy with Min and Projection

I have these arrays correlated by index. So for each index (ObjId, ObjState) form a pair. string[] ObjIds = { "Obj1", "Obj1", "Obj2", "Obj2", "Obj1", "Obj3", "Obj2", "Obj2" }; string[] ObjStates = ...
9
votes
4answers
99 views

Error creating a Linq query

I've a query like this one struct MyStruct { public string name; public double amount; } var a = from p in Products select new MyStruct { name = p.Name, amount = p.Amount }; ...
0
votes
1answer
47 views

Statement is not updating data item

I have this LINQ statement that tries to set the 1st element in the collection of string[]. But it doesn't work. Below is the LINQ statement. docSpcItem.Where(x => x.DocID == 2146943) ...
0
votes
1answer
130 views

Put value in datatable group by week

I have a datatable which comprises values from 1st January to march, something like this: DATE Employer Job1 Job2 1/4/2013 A 1.3 2 1/4/2013 B 2.5 6 ...
-1
votes
1answer
79 views

Top 10 Percentile by salary of results

I have a in-memory List of Job objects, were the Job object has a propery called Salary. How do I use LINQ or C# to filter this list to only contain the list of jobs with salaries in the top 10 or ...
0
votes
1answer
61 views

Linq to Objects Sum to List

Im designing a method that accepts a List<Bar>, and returns <List>BarGroup, grouped by Bar.barName. My guess is I need to use Aggregate with List.Add, but I am fairly new to lambdas and ...
0
votes
1answer
37 views

Search List content using Linq

I have List of object which contains values in following pattern 2$FirstLevel+HRMS 2#40#56$SecondLevelOperation+Add 2#60$SecondLevel+dffddfdf Using Linq i want to select the record which contains ...
0
votes
1answer
74 views

Is it possible to select multiple variables with LINQ without using keyword new?

Is there any way to select both a and b without new keyword in the following code ? (from a in Enumerable.Range(1, 9) from b in Enumerable.Range(1, 9) select a,b).ToArray(); EDIT My goal was to ...
0
votes
4answers
111 views

Is it possible that a LINQ (to Object) query contains infinite loop?

I have a simple class: public class RawBomItem { private string material; private string item; private string component; private string quantity; private string b; private ...
2
votes
1answer
55 views

Select multiple where on same column

Given the following code: var filtered = (from a in lijst select a); foreach (string brandstof in checkedListBoxHoofdbrandstof.CheckedItems) { MessageBox.Show(brandstof); filtered = (from a ...
3
votes
1answer
202 views

SortedSet / SortedList with better LINQ performance?

Let's say we have a sorted collection such as SortedSet or SortedList with many (10M+) elements. Lots of querying is happening, so performance matters. From runtime comparisons, I'm under the ...
0
votes
1answer
54 views

Filter nested DTOs with key

I have List of DTO Suach as : Public Class UKey { public Int64 Key{ get; set; } } Public Class Test : UKey { public Int64? CityId { get; set; } public Test2 test2{ get; set; } } ...
1
vote
2answers
331 views

LINQ SelectMany and Where extension method ignoring nulls

I have the below example code, and I am interested to know how I can make this any cleaner, possibly through better use of SelectMany(). At this point the QuestionList property will not be null. All I ...
2
votes
1answer
85 views

Need a linq to objects query for a nested collection

I am trying to select text from a collection that is three of four deep. RootObject has a List<ResourceSet> resourceSets The resourceSets has a List<Resources> resources The resources ...
0
votes
2answers
44 views

Join all the sublists together and grab the first one

I want to be able to pull the last invoice containing a product in a category Category->Product->Invoice (from p as Product in cat where p.InvoiceList.Where(function(o) o.InvoiceDate >= MAX_ONE) ...
1
vote
1answer
218 views

Querying Two data tables asp.net

I have 2 tables each with same fields basically containing table1.ItemCode table1.Qty table2.ItemCode table2.Qty i am querying these two tables from sql by the following command SELECT ...
0
votes
3answers
318 views

Select top N with record from DataTable with some sorting using Linq

I have created a DataTable. I have populated the rows of the DataTable after some operations. I am very new to Linq I want to Get the Top "N" Records from the DataTable implementing also some paging. ...
0
votes
3answers
132 views

LINQ Get Properties of Class

How can I get list of properties of a object/class using linq?? public class Person { public string Name { get; set; } public string Age { get; set; } public string Gender { get; set; } } ...
1
vote
3answers
708 views

Linq select objects in list where exists IN (A,B,C)

I have a list of orders. I want to select orders based on a set of order statuses. So essentially select orders where order.StatusCode in ("A", "B", "C") // Filter the orders based on the ...
2
votes
2answers
115 views

LINQ GroupBy x where there is more then one x and y is unique

Let there be an objects like so: class foo { public String x{ get; set; } public String y{ get; set; } } var bar = new List<foo> { new foo{ x= "u", y= "w"}, new foo{ x= "s", y= "q"}, ...
2
votes
3answers
79 views

Can't find the appropriate operators for a Linq query

I need help building a Linq query. I have this dictionary : var dict = new Dictionary<string, IDictionary<int, double>> { { "one", new Dictionary<int, double> { ...
1
vote
7answers
70 views

changing item position in a list

I have this code through which I filter and get a set of groups var groups = Items.Select(g => g.Category).Distinct(); Now in the list I also get a empty group "" which I want to place at the ...
0
votes
10answers
100 views

Get element from a List<Class> of classes

I have a class called Employee that represents each employee in a company. public class Employee { public string FirstName { get; set; } public string LastName { get; set; } public int ...
0
votes
4answers
73 views

LINQ GroupBy and Select on different property

If I have the following collection: var foos = new List<Foo> { new Foo{ Name = "A", Value = 1 }, new Foo{ Name = "B", Value = 1 }, new Foo{ Name = "B", Value = 2 }, new Foo{ ...
0
votes
1answer
60 views

ToLookup vs. ReadOnlyCollection

I've been using LINQ-to-objects for quite a while, but I just now noticed the Enumerable.ToLookup extension method and read its documentation. I came across it while looking for the quickest way to ...
0
votes
0answers
169 views

Not able to make linq work with datatable to generate recursive list ul

I need to generate unordered list menu from a datatable, So far i was not able to find a code which will recursive look through the table and generate list to any level I found this code which looks ...
0
votes
2answers
139 views

Linq query to group by field1, count field2 and filter by count between values of joined collection

I'm having trouble with getting a my linq query correct. I've been resisting doing this with foreach loops because I'm trying to better understand linq. I have following data in LinqPad. void Main() ...
3
votes
2answers
41 views

Recent users query

I have 2 tables, for example let's assume that this is the data: users table: ------------------------------ | user_id | username | ------------------------------ | 1 | ...
0
votes
0answers
76 views

update element of list of Complex object with linq

Hi everybody and thanks in advance for solution I've these objects List<AccessModuleInfo> listOfAccessModuleInfo = new List<AccessModuleInfo>(); public class AccessModuleInfo ...
0
votes
2answers
659 views

C#: Conversion from Int array to string array

When I am converting array of integers to array of string, I am doing it in a lengthier way using a for loop, like mentioned in sample code below. Is there a shorthand for this? The existing question ...
3
votes
2answers
237 views

Check Enumerator values if present using LINQ

public enum Test { A = 0, B = 1, C = 2, D = 3, E = 4, F = 5, G = 6 } DataSet oDsEnum = new DataSet(); DataTable oDtEnum = new DataTable(); oDtEnum.Columns.Add(new DataColumn("ENUM_ID", ...
0
votes
1answer
106 views

Double self-join looking for items that add more unique value?

I have a Dictionary<Key, <Quality,Item>> which is tracking the relationship between qualities and items. Qualities are an object type, Items are an object type, elsewhere I have lists of ...
4
votes
1answer
122 views

Enumerable.OfType<>() not working as expected with route collection

I swear this doesn't make sense. Given I have this HttpRouteCollection from Web API, I am filtering based on some custom route types, specifically IAttributeRoute. I use ...
0
votes
1answer
111 views

how to copy one column data to another column with in the same table using linq?

any one please clarify, how to copy one column data to another column with in the same table using linq. Thank you, Siva Kumar goru.
8
votes
3answers
141 views

Does this LINQ code perform multiple lookups on the original data?

We've got a slight performance issue in a section of code that's using LINQ and it's raised a question about how LINQ works in terms of lookups My question is this (please note that I have changed ...
2
votes
2answers
110 views

Optimize Linq Where, using key

The basics: IDictionary<TKey, TValue> extends IEnumerable<T> public interface IDictionary<TKey, TValue>: .., IEnumerable<KeyValuePair<TKey, TValue>> { ... } ...
0
votes
3answers
134 views

LINQ to Objects - any performance benefit in using ToArray / ToList over IEnumerable<string>

This is almost undoubtedly a dumb question. In my defence I'm ill. Anyway. I've got an in memory list of objects. I've used the following expression to pull out the strings I'm interested in from ...
1
vote
2answers
289 views

Return min value in group with lambda/linq query

I need help creating a lambda expression to query the following list for retrieving the lowest priced item in each channel. Ie for this example item A, D and G class Radio { public string Name { ...
1
vote
5answers
333 views

Recursively delete files from a Directory but keeping the dir structure intact

For cleaning up the test files, am trying to do the below. But its not clearing the files as well as not generating an error. Am I missing something obvious? private void CleanUpTempDirFiles() ...
0
votes
0answers
42 views

LinqToObject Visualizer Tool

You Know we can't Debug LinqToObject chained Linq Extension Methods with Lambda Expressions, on run-time. Is tere any Tool for Visualizing LinqToObject Extension Methods Results for Visual Studio 2010 ...
1
vote
2answers
130 views

LINQ Join get data from two databases

I need data from 2 different databases I have try following var User = (from U in _db.TblUsers where U.IsAdmin == false select U).ToList(); var ...

1 2 3 4 5 14