0
votes
1answer
23 views

Join PropertyInfo[] with iEnumerable<T> where every PropertyInfo.Name equals any T.variableContent

Im working with C# reflection and couldn't find a way to solve this. I want to join a list of PropertyInfos where the listed field names matches contents in a variable of any element of T. It's ...
-1
votes
4answers
78 views

Do Enumerable.FirstOrDefault() stop when it finds item? [closed]

I tried searching on MSDN, SO and then on the Web but could not find answer. Say I have a collection in which I do FirstOrDefault(). Let say it finds the item. Does its stop and returns the item or ...
2
votes
1answer
93 views

IEnumerable has values but still gives System.NullReferenceException

I am populating an IEnumerable using a LINQ query. The IEnumerable is then passed into another class and appended as a parameter (to a Telerik report). On this line, I'm getting a ...
3
votes
2answers
33 views

How to select objects with highest value of Property A, grouped by Property B?

For example, if I have an list of objects with the following properties No Grouper Sorter 1 X 3 2 X 2 3 X 1 4 Y 3 5 Y 2 6 Y 5 7 Z ...
0
votes
2answers
45 views

select all fields from ilist, contains list of objects

I have an IList---> IList<Test> list; the list ...
0
votes
1answer
28 views

Cast Exception when performing LINQ on IEnumerable

Let's say I have two classes, class A { } class B : A { } I have a method which accepts a parameter foo of type IEnumerable<A>; void AMethod(IEnumerable<A> foo) { } but instead pass ...
0
votes
1answer
36 views

WCF Service LINQ Query to signin a user

I'm stuck with a LINQ query to signin a user in my application. I want to check the SQL Azure table named tbluser and i'm using generated LINQ DataClasses to query my SQL azure table. I have ...
1
vote
1answer
36 views

Why method does not traverse entire tree

I have a method that looks like: public IEnumerable<Node> TraverseTree(Node root) { if(root.Children != null) { foreach(var item in ...
21
votes
4answers
494 views

Array.Count() much more slower than List.Count()

When using the extension method of IEnumerable<T> Count(), an array is at least two times slower than a list. Function Count() List<int> 2,299 ...
0
votes
1answer
58 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
1answer
58 views

How can I upsert an enumerable from another enumerable c#

I've looked through the questions on this site but haven't found which matches my particular problem. Assuming I have the following: Product[] store1 = { new Product { Name = "apple", Code = 9, ...
1
vote
1answer
40 views

Group and concatenate List of tuples

I have a list of pairs (key, val) with both key and value being strings. I want to aggregate the tuples with duplicate keys. For (key1, val1), (key2, val2), (key3, val3), (key1, val4), (key2, val5) ...
-1
votes
1answer
46 views

How to use SingleOrDefault/where in IEnumerable Session property

I'm using VS2010 Entity Framework to store a value in a session. I the use syntax below: private IEnumerable _TransactionItem2 { get { var msg = ...
0
votes
1answer
80 views

IEnumerable lambda expression for Where()

following code works on a collection of type IQueryable: Expression<Func<Activity, bool>> filter = e => e.IsDeleted && e.CategoryId == 1; But this expression doesn't work on ...
0
votes
2answers
89 views

How do I set a local variable during a LINQ query expression?

How can I increment counter while inside a LINQ query? Consider the following Public Class SimpleString Public Property Value As String End Class ... Public Shared Sub SetStuff() Dim ...
1
vote
2answers
57 views

select n records from nth record in linq

I am searching for something like LIMIT(10, 10) <- thats how it works in php Products = Products.Take(10).ToList(); That's not what i want because i want to take 10 records starting at the 10th ...
0
votes
1answer
35 views

How do I produce a non-distinct union of strings with LINQ?

Given the following two IEnumerable(Of String) of unknown length, how can I produce the non-distinct union? Dim theseStrings As IEnumerable(Of String) = {"true", "true", "true", "true", "true"} ...
0
votes
2answers
54 views

return type issue with IEnumerable<KeyValuePair> [closed]

I am working on a linq method and cannot seem to get the return type to match the method signature. Any guidance would be much appreciated. Thanks! private static ...
6
votes
4answers
132 views

“Unzip” IEnumerable dynamically in C# or best alternative

Lets assume you have a function that returns a lazily-enumerated object: struct AnimalCount { int Chickens; int Goats; } IEnumerable<AnimalCount> FarmsInEachPen() { .... yield ...
6
votes
6answers
198 views

Delete an element from a generic list C#

I can´t remove an element from an IEnumerable list, but this list is a reference to a List , a private attribute of an other class. If I put personsCollection.Remove(theElement) in the same class ...
0
votes
2answers
72 views

Find (and extract) complex correllations to find rule violations

I'm working on some code that is not very well written and involves some fairly complex logic which I wish to refactor. The topic is the validation of rules and reporting potential violations. ...
0
votes
2answers
37 views

What is the difference between an IQueryable's Contains() and an IEnumerable's Contains()?

I have an IQueryable custs, a Customer cust, a CustomerComparer custCp which implements IEqualityComparer. When I call custs.Contains(cust, custCp) I get an exception: System.NotSupportedException: ...
0
votes
2answers
140 views

How to convert anonymous type to IListSource, IEnumerable, or IDataSource

I create the following anonymous type: int group_id = 0; int dep_code = 0; int dep_year = 0; string dep_name = string.Empty; int boss_num = 0; string boss_name = string.Empty; var list ...
0
votes
2answers
94 views

Why failed to add item on a session IEnumerable list

Work on entity framework vs2010, I want to store somewhere some set of objects obtained from the database. Because I dont want to call DB after which user request. And I do it this way: public ...
13
votes
2answers
263 views

Use IQueryable.Count<T> with an IEnumerable<T> parameter

imagine a class, let's say for pagination which could be used with an IList<T> or an IQueryable<T>. That class would have an int TotalItems property, which would (not that surprising) get ...
2
votes
2answers
53 views

Do I have to use CopyTo to get a custom collection into an enumerable?

Consider the following code: var results = searcher.FindAll(); SearchResult[] srList = new SearchResult[results.Count]; results.CopyTo(srList, 0); where searcher.FindAll() returns a ...
2
votes
2answers
116 views

How to intersect multiple IEnumerable?

I don't understand why my variable selected doesn't contain the content of all the TempX variable. For example, in my case, the variable TempX containt one SuperObject but as soon as I reach the first ...
2
votes
1answer
166 views

Error returning IEnumerable<SelectListItem> to MVC controller

Hi I have a business logic layer that returns selectlistitems to a controller, so that will then pass to the view to populate select lists. I have this method that works: public ...
0
votes
0answers
138 views

loop inside linq [closed]

I have a list at my class. One member of the class is a string list, and I have to check this list. If it contains -, I must parse it and so on. For example: ...
1
vote
2answers
113 views

LINQ not working on IEnumerable

I'm using Autofac (I've registered the base nuget package in a console app) and want to take a look at a list of registrations. using System; using System.Collections.Generic; using System.Linq; ...
1
vote
1answer
141 views

IEnumerable add item?

Model public class ChartData { public IEnumerable<Series> Series { get; set; } public string[] Categories { get; set; } } public class Series { // there is another types } I have ...
1
vote
4answers
105 views

Determine if LINQ Enumerable contains object based on a condition? [duplicate]

I have an IEnumerable<Project> I want to know if this list has any element Project.ID == someID. Is there a way to do that?
14
votes
1answer
244 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 ...
57
votes
10answers
2k views

Why does IEnumerable<T>.ToList<T>() return List<T> instead of IList<T>?

The extension method ToList() returns a List<TSource>. Following the same pattern, ToDictionary() returns a Dictionary<TKey, TSource>. I am curious why those methods do not type their ...
-1
votes
3answers
145 views

Using IEnumerable<> and creating a property with its type

I have not used Linq much nor have I used the IEnumberable class. Below is my code and explanations on what I am having trouble with. public class EmailService : IEmailService { #region ...
1
vote
2answers
121 views

How to iteratively chain IEnumerable.Where() using a for loop?

Consider the following code (albeit, a little contrived, but it's a major simplification of a real-world program): string[] strings = { "ab", "abcd", "abc", "ac", "b", "abcde", "c", "bc" }; string[] ...
0
votes
1answer
179 views

IEnumerable to list inside linq query

I am trying to run this query, where I try to fetch categories and there sub categories studentCont.ContinuumCategories = db.continuumcategorymasters .Where(x => x.AssessmentId == ...
0
votes
1answer
141 views

About deferred execution of IEnumerable

In the following code, I understand the second initialization prints one "outside" and three "inside". But why does the first does not print at all, I expect it to print one "outside". ...
3
votes
3answers
152 views

Is it possible to turn an IEnumerable into an IOrderedEnumerable without using OrderBy?

Say there is an extension method to order an IQueryable based on several types of Sorting (i.e. sorting by various properties) designated by a SortMethod enum. public static ...
4
votes
1answer
149 views

How to handle IEnumerable with IGrouping in the view?

I am trying to send to the view an IEnumerable and to show every element in it but I have a problem when I send it. It says that: ...
3
votes
5answers
90 views

Check difference between 2 IEnumerables

So basically I have the following 2 IEnumerable lists List A = {"Personal", "Tech", "Social"} List B = {"Personal", "Tech", "General"} Now what I want to achieve is, get the difference between List ...
2
votes
2answers
83 views

Linq and Ienumberable lazy query. Efficiency lost?

Ive been reading that Ienumerables dont run straight away. So I'm trying to find the best way to query a list. Below is my getAll method. Followed by my filter method. Followed by a preferred filter ...
4
votes
3answers
140 views

Why to Apply AsEnumerable() Method to an Array?

I am reading C# AsEnumerable: "The IEnumerable interface is a generic interface. This means it defines a template that types can implement for looping. The AsEnumerable method, a generic ...
2
votes
3answers
218 views

Creating a select list from an array [duplicate]

Possible Duplicate: how to find the index particular items in the list using linq? I am trying to create a IEnumerable<SelectListItem> from an array of strings. string[] months = { ...
0
votes
1answer
284 views

linq where Contains in IEnumerable

//\\ ---- selected items from ChechBoxList IEnumerable<int> selSender = (from ListItem item in CheckBoxList1.Items.OfType<ListItem>() where ...
2
votes
2answers
276 views

How to Implement GetEnumerator method for class that implements IEnumerable<IEnumerable<T>>

BACKGROUND: I created a generic TimeSeries<T> class that should implement the IEnumerable<IEnumerable<T>> interface: public interface ITimeSeries<T> : ...
6
votes
8answers
372 views

Split an IEnumerable<T> into fixed-sized chunks (return an IEnumerable<IEnumerable<T>> where the inner sequences are of fixed length)

I want to take an IEnumerable<T> and split it up into fixed-sized chunks. I have this, but it seems inelegant due to all the list creation/copying: private static ...
3
votes
2answers
442 views

Eliminate Possible Multiple Enumeration of IEnumerable

Getting the Possible Multiple Enumeration of IEnumerable warning from Reshaper. What I'm wondering is whether or not Resharper is correct in giving me this warning. The warning occurs on all ...
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 ...
5
votes
2answers
206 views

How can I merge two Linq IEnumerable<T> queries without running them?

How do I merge a List<T> of TPL-based tasks for later execution? public async IEnumerable<Task<string>> CreateTasks(){ /* stuff*/ } My assumption is .Concat() ... void ...

1 2 3 4 5 8