IEnumerable is a .NET interface for iterating (or enumerating) a collection of items.

learn more… | top users | synonyms

3
votes
2answers
57 views

Passing IEnumerable Variables into .NET from ColdFusion

I'm working on doing some ColdFusion integration with a custom .NET DLL that I don't have the ability to tweak. During this process, I've been able to do everything that I need to do other than create ...
-1
votes
2answers
58 views

Initialize or Lazy load an ObservableCollection<T> in a fast and optimized way from IEnumerable<T> records

I have an IEnumerable<T> collection of about 30,000 records that are created upon application load time and these records are converted to ObservableCollection<T> by doing (which takes ...
1
vote
4answers
46 views

how to add a new parameter to SqlParameter[ ] Collection?

I want to use something similar like this: using (DataSet ds = new DataSet()) { SqlParameter[] dbParams = new SqlParameter[] { new SqlParameter("@PromptID", ...
5
votes
1answer
132 views

Just when stackoverflow is fair and sensible

Code updated For fixing the bug of a filtered Interminable, the following code is updated and merged into original: public static bool IsInfinity(this IEnumerable x) { var it= x as ...
0
votes
1answer
27 views

Complie Time Error: SelectMany

I am trying to identify ienumerable properties within an object and then convert it to Dictionary object I wrote a linq query with lambda expression to convert list of list to list and I am following ...
2
votes
2answers
81 views

Is an infinite enumerable still “enumerable”?

Like two overlapping line segments, we can find infinite points of intersection. To enumerate all these points might not make sense, and we might just want to present that this collection is infinity. ...
0
votes
1answer
32 views

How to find a property of an object which is IEnumerable [closed]

I am trying to write an extension method which converts an object to routevalue dictionary and want to exclude IEnumberable so I can deal with them later on I am executing following code in LinqPad ...
0
votes
1answer
26 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
vote
1answer
34 views

Compare two lists in .Net and action depending on which lists items are in

I have a web page that saves a list of changes, so in the save action I have two lists, one with the new values and one with the existing ones. I want to: Loop through both lists, unioned and ...
0
votes
4answers
64 views

IEnumerable<> instead of List<> goes well when reading objects

Consider my following class Album: public class Album { public int? Id { get; set; } public string Name { get; set; } public IEnumerable<Photo> Photos { get; set; } public ...
0
votes
0answers
20 views

Sorting ObservableCollection by nullable class property and ThenBy

I am trying to sort an ObservabkeCollection object containing the following class public Favourites(string title=null, string uri=null, string folder=null, bool delete=false) { this.pageTitle = ...
1
vote
0answers
35 views

KendoUI listview passing IEnumerable<model> instead of model from editor template in MVC

I've been puzzling over this for a few days now. Basically, I have a view model that contains three IEnumerables of other view models to be displayed in three separate Kendo controls - one as a ...
0
votes
1answer
25 views

RadioButton doesn't get current value from model

My model is IEnumerable<> of RatingSource. public class RatingSource { public int Id; public string Source; public bool IsActive; In the view I want to see 2 ...
1
vote
3answers
46 views

Can ViewModel have property of type IEnumerable<> instead of Array

I generally construct my ViewModel like this: MyViewModel { (...) IEnumerable<MyClass> Items {get; set;} } Should I ever care (be afraid) that I am not passing an already evaluated values ...
-1
votes
4answers
79 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
4answers
193 views

How do I iterate over collections generically in C++?

Simply put, if I have a set and vector how do I create a generic method that can handle both as params. All I want to do, is iterate over either types of collections. Sounds like it should be ...
0
votes
0answers
22 views

IEnumerable<T> with dynamic generic - C#

I am trying to achieve following, is it possible? Type T = Type.GetType("EntityName") IEnumerable<T> entities = BaseRepository.GetEntities(searchCriteria) as IEnumerable<T>();
2
votes
3answers
63 views

Ideal C# IEnumerable generic number sequence with start and interval

I was looking for, but could not find, an idiomatic example for a generic class implementing IEnumerable, which does this: constructor takes start and interval, and GetEnumerator returns IEnumerator, ...
0
votes
0answers
36 views

Interceptor for IEnumerable methods

I'm trying to write an interceptor that can work on any IEnumerable. I've been able to follow this question: "How to write interceptor for methods returning IEnumerable" and I can proxy direct ...
2
votes
1answer
95 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 ...
2
votes
2answers
55 views

IEnumerator<T> / IEnumerable<T> with position stored only temporarily?

I'm developing a graph where I need to keep the memory usage per node as low as possible. Each node implements IEnumerator / IEnumerable. IEnumerator / IEnumerable make use of "position" in the ...
1
vote
1answer
152 views

Custom Stack<T> made with IEnumerable<T> and Array?

I've got this problem that I've been trying to figure out. I am trying to make the CustomStack act like Stack, only implementing the Push(T), Pop(), Peek(), and Clear() methods. I've got this code, ...
0
votes
2answers
45 views

Viewmodel IEnumerable property is empty

I'm in the middle of making an ASP .NET MVC4 based app. I'm a complete newb in that field. The idea is quite simple - have a some members in DB, show them listed, select desired ones via check boxes ...
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 ...
1
vote
1answer
48 views

Is there any way to speed up datatable.LoadDataRow()?

I am refreshing a data table by calling DataTable.LoadDatatRow as follows: public void FillTable(DataTable myTable, IEnumerable<MyObject> readings) { var index=0; foreach(var reading ...
0
votes
1answer
30 views

assign list items which are attributes in a viewmodel to table attributes in asp.net mvc3

I am using Asp.net mvc3 In my viewmodel I have taken an IEnumerable attributelike: public IEnumerable<EmployeeDetailsViewModel> EmployeeList{get;set;} In my controller this EmployeeList is ...
3
votes
2answers
80 views

C# - action on IEnumerable<T>

I have implemented this extension method: public static IEnumerable<T> DoForEach<T>(this IEnumerable<T> data, Action<T> action) { foreach (T value in data) { ...
1
vote
2answers
47 views

Returning subtype of IEnumerable in Dictionary not possible

Why is this a problem in C#? public Dictionary<string, IEnumerable<object>> GetProducts() { return new Dictionary<string, IList<object>>(); }
0
votes
2answers
49 views

select all fields from ilist, contains list of objects

I have an IList---> IList<Test> list; the list ...
0
votes
1answer
30 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
46 views

Accessing nth element of IEnumerable

I have this method: private IEnumerable<XElement> ReadTransactions(string file_name) { using (var reader = XmlReader.Create(file_name + ".xml")) { while ...
1
vote
2answers
87 views

Cannot convert IEnumerable<T> to IEnumerable<T> for different mscorlib versions

I'm messing with a few generic classes in which I have a collection class which contains a method to load objects from a DTO collection, fetching the child objects using a Func public void ...
0
votes
1answer
38 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
38 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
502 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 ...
2
votes
2answers
51 views

Aggregate a series of contiguous blocks in an IEnumerable

Overly simplified, contrived question I have an enumerable instance which can contain a series of contiguous elements, and the some other elements interdispersed with them. A simple example var ...
0
votes
1answer
90 views

I'm getting `System.InvalidOperationException: Collection was modified; enumeration operation may not execute`, inexplicably

I'm getting System.InvalidOperationException: Collection was modified; enumeration operation may not execute: ExceptionLoggingLibrary.LoggingException: Exception of type ...
0
votes
1answer
65 views

Returning an IEnumerable<> list to a partial view from a view

I have a project I am working on for a Meal Planner. I have a simple product model and a Meal model which should be a collection of products. I am trying to create a "Create" view in which I can ...
0
votes
0answers
51 views

Implemement Strongly Type IEnumerable - Explicit Cast of System.Collection.Enumerator [duplicate]

Yes it is a duplicate. I searched before I posted and did not find that post. How to cast System.Collections.Enumerator to System.Collections.Generic.Enumerator < iWord > ? Question is closed ...
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
1answer
59 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
42 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) ...
0
votes
2answers
138 views

How does the RemoveRange() method work in a List<>?

As in title. I know it probably merges 2 sublists before and after deleted items, but how does that method behave when removing LAST elements? In other words: does it somehow make a copy of all ...
0
votes
3answers
52 views

How to enumerate a list in portions (to avoid OutOfMemoryException)?

I have an IEnumerable of objects which I want to do some processing on. But when the collection gets too large, it throws an OutOfMemoryException upon enumerating it, for instance on a call to ...
-1
votes
1answer
49 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
83 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 ...
2
votes
1answer
54 views

How to convert IDictionary<TKey, List<TValue> > to IDictionary<TKey, IEnumerable<TValue> >?

I have a function that return a IDictionary<TKey, List<TValue> >. I have another function that takes a IDictionary<TKey, IEnumerable<TValue> >. I need to pass the return of ...
0
votes
1answer
165 views

JSon.Net Serialize result of yield return

I am trying to return some data to a webservice using json and the JSon.Net library. One of my functions is an iterator method that lists data using yield return. When I try to serialize this return ...
0
votes
2answers
99 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 ...
0
votes
3answers
73 views

How to iterate through, and update each element of an IEnumerable

I have an IEnumerable object that has been populated by an SqlQuery call and I want to iterarate through it and update its type class members. My example code: public class MyClass { public ...

1 2 3 4 5 28