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

learn more… | top users | synonyms

0
votes
4answers
60 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
19 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
14 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
23 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
37 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
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
4answers
190 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
57 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
29 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
92 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
52 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
145 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
38 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
36 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
26 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
74 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
40 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
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
44 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
84 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
35 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
492 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
50 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
75 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
57 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
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) ...
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
43 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
79 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
53 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
149 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
86 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
64 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
vote
2answers
56 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"} ...
-1
votes
1answer
69 views

Passing IEnumerable through Json

I'm making a "Like" button in a simple comment database MVC program. I'm passins the ID of the comment through to a ActionResult in the HomeController when I hover over the "Like" button. The problem ...
1
vote
2answers
154 views

IEnumerable with yield return and VS Quickwatch crash

I have the following method that return an IEnumerable public IEnumerable<ExternalFilter> GetExternalFilters() { if (externalfilters == null) yield break; foreach ...
3
votes
1answer
51 views

Interface declared as IEnumerable but not usable as such

I have an IEnumerable interface: public interface IBrands: IEnumerable<Ibrand> And its instanciation: public class Brands: IBrands { public Brands() { _brandsDic= new ...
0
votes
0answers
34 views

Check if typeof T is dynamic [duplicate]

I'm not sure if that's even possible, but I need to determine whether the typeof(T) is dynamic ? Suppose this is my method: public IEnumerable<T> GetEntries<T>(string query) where T ...
0
votes
1answer
80 views

How to Convert an IEnumerable model object to single model object in view , MVC3

This is not a duplicate.Though the other question is same as this it got solved when it deviated from the procedure. Here i again stumbled upon the same question. Iam using a DB First approach. I ...
1
vote
2answers
48 views

Find the index of a specific combination without generating all ncr combinations

I am trying to find the index of a specific combination without generating the actual list of all possible combinations. For ex: 2 number combinations from 1 to 5 produces, ...
1
vote
1answer
73 views

wpf datagrid Ienumerable returning null

Using C#.NET4.5, MS Visual Studio 2012, WPF. Hi guys got some code here that giving me null. This code was a previous solution that I tried. I received no errors but never tested through it since ...

1 2 3 4 5 28