0
votes
1answer
29 views

Finding matches that contain certain text in properties using LINQ

I am trying to convert the following code to LINQ foreach (var item in pageHistorycol) { if (item.PageTitle.Contains(text) || item.PageURI.Contains(text)) { ...
4
votes
1answer
74 views

Searching in two collections

I have two collections. A collection of BindingSource and a collection of DataSet. Now I try the corresponding data types of the BindingSource collection to found in the table types of the DataSet ...
0
votes
3answers
55 views

How to call a method from of a property using Reflection

I'm using nhibernate in a application and I have a mapped model with some relations. Theses relations are mapping with List<T> and I need to pass a entity to a method and call the Any() method ...
0
votes
3answers
62 views

System.Linq.IOrderedEnumerable does not contain a definition for 'ToList'

Now this one has me stumped and so I would appreciate some help please. I have this code tested in .NET 4.0 application, and it works fine. However, when I move it back to my 3.5 environment, I get ...
2
votes
1answer
36 views

Create a list of objects by grouping on multiple properties

I have a List<T> where T is a custom object Cow. Right now I use the following code to split that list up based on Color. cowGroups = from x in cows group x by x.Color into y ...
1
vote
4answers
114 views

Best searchable collection strategy for performance?

I've got a collection of objects with the following interface: public IEntity { public string Key1 { get; set; } public string Key2 { get; set; } ... some other properties } and am ...
0
votes
0answers
40 views

Error binding Dropdown with collection implementing List<CodeDetail>, IEnumerable<SqlDataRecord>

I am getting following error when I load the page. I am using C#, MVC, LINQ, MSSQL Server. DataBinding: 'Microsoft.SqlServer.Server.SqlDataRecord' does not contain a property with the name 'Code'. ...
3
votes
2answers
75 views

Compare and check collections using LINQ

I have to compare 2 collections and check if the transactionId in the TransactionLevelCommentsCollection exists in the TransactionCommentsCollection. If exists throw an alert of the ...
0
votes
4answers
65 views

Directory with datetime+string key, and automatic removal of old entries

I have an application that receives certain "events", uniquely identified by a 12 chars string and a DateTime. At each event is associated a result that is a string. I need to keep these events in ...
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” ...
4
votes
1answer
98 views

How to merge 2 dictionaries

I have to aggregate two dictionaries. Code: private Dictionary <int, aor.PhysicalObject> agents; private Dictionary <int, aor.PhysicalObject> objects; agents = (from a in log ...
4
votes
2answers
115 views

Does C# have a ContainsAny() method for a dictionary?

I have a dictionary where the Key is an Id and the value is a string I now have a List of person objects where each person has a CarIds property that is an IEnumerable<int> I want to ...
0
votes
1answer
59 views

Why Linq returns only one object when no filters are used

I really dont know how to explain this issue. Sorry if its a duplicated post. This code below works fines. Return to me the product with ID 1031 and when i ran the filter (where) i get the same ...
0
votes
2answers
73 views

After running a LINQ over an Entity the SaveChanges method throw an Exception

This is my class public class Employee { public virtual List<Salary> Salaries { get; set; } public bool CanAddSalary(Salary salary) { var count = (from x in Salaries ...
0
votes
1answer
48 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) ...
1
vote
2answers
76 views

Find items from a list which exist in another list

I have a List<PropA> PropA { int a; int b; } and another List<PropX> PropX { int a; int b; } Now i have to find items from List<PropX> which ...
4
votes
2answers
81 views

Troubles with LINQ and object references

I'm stuck trying to get something along the following lines to work, here is a complete code example that can be run inside of Visual Studio that demonstrates the scenario I am talking about. ...
3
votes
2answers
112 views

Why would you use an immutable value in a dictionary?

The multiple answers to question "Multi value Dictionary" propose to use an immutable class as TValue in Dictionary<TKey, TValue> Class. The accepted Jon Skeet's answer proposes a class Pair ...
3
votes
4answers
184 views

Find Gap Date Ranges from two Set of Date Ranges C#

I have Base date Ranges and Test Date Range. I need to get GAP between base and test meaning Missing Date Ranges that are in Base but not in Test. what would be the best way to do this? Base Date ...
0
votes
3answers
41 views

Filtering out values from a list of object in a List

I have an IEnumerable collection of UnitGroup: IEnumerable<UnitGroup>, class UnitGroup { string key { get; set; } List<UnitType> NameList { get; ...
4
votes
3answers
72 views

Sort a list from another list IDs

I have a list with some identifiers like this: List<long> docIds = new List<long>() { 6, 1, 4, 7, 2 }; Morover, I have another list of <T> items, which are represented by the ids ...
0
votes
2answers
43 views

Get range in ordered collection

I have an ordered collection of DateTime values. I want to retrieve all the values in the collection between a particular start and end time. What collection should I use to do this in the most ...
1
vote
1answer
73 views

The number of lambda outer subquery iteration variable evaluations

From the LINQ Quiz questions and answers to Q4 and Q5 With colors array defined as: string[] colors = { "green", "brown", "blue", "red" }; and query from Answer to Q4: var query = from c ...
5
votes
4answers
61 views

What is the easiest way to seeing if there are any matches across a few DateTime arrays?

If i have 3 DateTime lists that come from different sources List<Datetime> list1 = GetListOfDates(); List<Datetime> list2 = GetAnotherListOfDates(); List<Datetime> list3 = ...
14
votes
1answer
248 views

LINQ gets confused when implementing IEnumerable<T> twice

My class implements IEnumerable<T> twice. How can I get LINQ to work without casting hashtable every time? I wrote my own covariant hashtable implementation that also inherits from .NET's ...
0
votes
1answer
94 views

Using Linq Correct Quiz and Group by Topic

I have 3 lists and classes: List<student_Answers> student_answer = new List<student_Answers> {new student_Answers {id = "1", q1 ="*C", q2= "*D", q3 = "*B", q4= "*A" }, new ...
1
vote
3answers
197 views

How to read XML String into List or any collection

I have string simillar to xmlDataEntAddAttr = @"<ADDITIONAL INFO> <Host> Test Host Name </Host> <IP Address>Test IP ...
0
votes
1answer
47 views

Item-by-item list comparison, updating each item with its result (no third list)

The solutions I have found so far in my research on comparing lists of objects have usually generated a new list of objects, say of those items existing in one list, but not in the other. In my case, ...
0
votes
1answer
50 views

Finding next/previos item and setting as current item

All, I have a List that is bound to something. Let's say I have a current index of i. Now, I delete from the List several items (which may or may not be next to each other). If I wanted to reset ...
0
votes
1answer
113 views

Loop through IEnumerable in @Html.DropDownListFor (MVC3)

I have a collection of models that I am passing to my view and I want to display each model.property in the dropdownlist. The problem is there is a bug in my code where it shows two duplicate items. ...
0
votes
0answers
58 views

C# MongoDB “Near” Query

I have a mongo collection that look like that: { "_id": { "$oid": "50e9f38fbd7680c8090bcb4" }, "guid": "D3G5wQ8RZL", "lat": 37.503287248864, "lng": -121.97620341421, } I want to preform "NEAR" ...
1
vote
4answers
140 views

How to search an object list in c#?

I'm still learning C# and am trying to build a list of NICs that I can later reference in my code to perform misc. functions. Anyway, I'm able to populate the list fine, but the problem now is that ...
1
vote
3answers
60 views

Which way to get indices of collection items meeting a condition is better?

Suppose I have a collection of strings. List<string> lines = new List<string>(File.ReadAllLines("Test.txt")); And a regular expression to search for a match in that collection: Regex r ...
38
votes
5answers
810 views

How to write a LINQ query resulting in a Dictionary?

public class Person { public string NickName{ get; set; } public string Name{ get; set; } } var pl = new List<Person>; var q = from p in pl where p.Name.First() == 'A' ...
0
votes
1answer
58 views

Consolidated Linq

I have a collection which is being passed from method to method and various Linq operations being done on it. When this collection finally comes to me I also do a little linq operation on it. Now ...
1
vote
3answers
89 views

Read List<custom class> Containing Single Record

I have a list which has a single record i.e which matches to a particular ID. Now I want to use this list's property(i.e. a column for that single record) without using FOREACH loop as it will just ...
4
votes
4answers
265 views

C# listbox Collection syntax

While learning C# pretty fast, I am stumbling on this Collection syntax problem. I added a number of objects of my own type MyItem to listbox lstData. Now I need to search in this listbox and thought ...
2
votes
2answers
78 views

Find the union of two dictionaries, with different types of values

Problem using System.Collections.Generic; using System.Linq; Given a base class and 2 derived classes: class Base{} class Derived0 : Base{} class Derived1 : Base{} I have two dictionaries, of ...
-1
votes
1answer
92 views

Intersecting lists with custom comparer returns empty set

I am comparing to list using intersect as follows: (Using POCO Car as an example) IEnumerable<Car> updatedCars = CarsList.Intersect(dbCarsList, carsComperator); I defined carsComperator as ...
2
votes
3answers
98 views

How to build this LINQ expression?

I have a class that looks like this: class UserProfile { public int Id; public int? ParentId; public string Name; public string Role; } Each UserProfile is a user or an admin. Each user may be a ...
16
votes
3answers
606 views

Why is OrderBy which returns IOrderedEnumerable<T> much faster than Sort?

This is a follow up of this excellent question C# Sort and OrderBy comparison. I will use the same example: List<Person> persons = new List<Person>(); persons.Add(new Person("P005", ...
0
votes
2answers
49 views

Creating a collection of a particular property of all the elements of a collection without iterating the elements of that collection

I have a treenode collection as IEnumerable<treenode> nodes. Is there any method to create a collection of treenode.guid directly from nodes without iterating all the elements? E.g.: ...
0
votes
8answers
391 views

How to assign LINQ Query result to Custom Collection and convert List<T> to T[]

It's a simple question but i don't really know how to do it efficiently. Is there any way to efficiently convert list of values to array e.g List<int> to int[] OR List<CustomObj> to ...
1
vote
2answers
287 views

using LINQ to extract sections out of a string array into a new collection

I have a string array in this format (each line is a slot in the array): IT1 PID Ref Ref REF IT1 PID REF IT1 PID Ref REF ... I want to extract each IT1 through the last REF into a new array using ...
1
vote
1answer
38 views

what is a better choice to hold a range when being queried by linq

I need to save a set of ranges of integers so then I can query them using linq like below : int param = 10; var matched = from item in items where param >= item.min && param ...
2
votes
2answers
593 views

Check for any element that exists in two collections

I'm wondering if Linq has a method to check if two collections have at least a single element in common. I would expect something like this: var listA = new List<int>() { some numbers }; var ...
1
vote
3answers
160 views

Select items between two other items using LINQ

I'm trying to create a dictionary collection from a single collection below the key in the dictionary is every file of type "k" and the values for each key are files of type "a". In other words, I'm ...
2
votes
1answer
130 views

Querying two collections at same time with Linq

If I have 2 collections of objects, is it possible to effectively join them, and select from both of them, in one query? For example: var collection1 = GetSomeData(); var collection2 = ...
0
votes
1answer
91 views

Linq extension methods - how to get list of items that are equal to items in my collection?

I have something like this: public bool Function(IEnumerable<MyObject> MyObj) { var context = new ContextDb(); var MyObjFromContext = context.MyObjects.Where(obj => obj == MyObj) ...
2
votes
3answers
68 views

EF Code first - add collection to a collection, appropriate usage of skip() and take()

I have something like this: var thread = _forumsDb.Threads .Include("Posts") .Single(t => t.Id == threadId); Now, when i have a single thread, and a collection of ...

1 2 3 4 5 6