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 ...
0
votes
2answers
109 views

Returning IEnumerable when the object is an IQueryable

I'm a bit confused about IEnumerable and IQueryable and interswapping of usages with Entity Framework. I've tried to do as much googling as I can on the subject but it hasn't seemed to help. So ...
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: ...
13
votes
2answers
271 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 ...
4
votes
1answer
77 views

Can I do Contract.Ensures on IQueryable and IEnumerable?

Lets see this code: public IQueryable<Category> GetAllActive() { Contract.Ensures(Contract.Result<IQueryable<Category>>() != null); return dataSource.GetCategories(T => ...
2
votes
2answers
105 views

I need confirmation about my understanding on IQueryable & IEnumerable

IQueryable From my understanding, In LINQ to SQL & Object , until I excute my query, I can add more expresstions. In this example, query1 and Query2 becoume finalquery when I try to excute ...
-3
votes
2answers
141 views

IQueryable - Why is it better then IEnumerable? [duplicate]

Possible Duplicate: What is the difference between IQueryable<T> and IEnumerable<T>? I read so much about IQueryable and I still dont understand when to use what and what are ...
3
votes
1answer
647 views

IEnumerable<T> and IQueryable<T> clarification?

after reading this question , i need to clear up some things IQueryable<Customer> custs = from c in db.Customers where c.City == "<City>" select c; IEnumerable<Customer> custs = ...
4
votes
1answer
629 views

Why is IQueryable twice as fast than IEnumerable when using Linq To Objects

I know the difference between IQueryable and IEnumerable, and I know that collections are supported by Linq To Objects via the IEnumerable interface. What puzzles me is that queries are executed ...
8
votes
4answers
177 views

What is a good way to to indicate an IEnumerable is “slow” or “fast”?

The answer to What is the expected performance of IEnumerable? says there's no way to know anyting about the performance of iterating an arbitrary IEnumerable. Each iteration could hit a database or ...
4
votes
1answer
91 views

IEnumerable Items Disappear - Exist in DAL but not Caller

I have a DAL method that retrieves items. The items exist in the DAL method, but not in the calling code. How is that possible? Calling code: IEnumerable<InstallationSummary> ...
0
votes
1answer
250 views

IQueryable vs IEnumerable…Extension Methods

Seriously, I have to be missing something simple. Any help would be greatly appreciated. Here is the scenario: 1) Create an IQueryable extension method called DoSomething with an appropriate ...
1
vote
0answers
57 views

generic 'data container' / namespace provider in .net

Is there a generic interface that defines a nested "data provider" relationship ? That is, some object, given an identifier, provides an object. Like IEnumerable, this happens all the time and ...
4
votes
2answers
343 views

Order of execution of LINQ methods returning same results but different SQL in this code. What exactly is going on inside?

So, here's my code: Notice the positions of the ToList() method here, which is of IEnumerable, comparing it line by line. Customers.ToList().Where(m=>m.ID > ...
1
vote
2answers
203 views

Is IEnumerable a good return type for data that allows filtering?

I just read this question and it got me thinking of why I would need to use the IEnumerable when retrieving data. I understand the differences between IQueryable and IEnumerable, but would an ...
3
votes
2answers
912 views

Why using Count with IQueryable is considered infeasible

if i have the following code:- IQueryable<People> list = repository.FindAllPeople; int countt = list.Count(); Then is it considered as infeasible to count IQuerable objects and it is ...
0
votes
2answers
593 views

Using IQueryable Or IEnumerable inside my search action method

i have the following action method:- [AcceptVerbs(HttpVerbs.Post)] public PartialViewResult Search(string q, int classid) { var users = ...
3
votes
3answers
365 views

LINQ query returns old results when source list is re-initialized

A coworker and I were discussing a situation where an IEnumerable query was returning an old result set after the source list had been re-initialized. Somewhere in the execution of the application ...
4
votes
2answers
221 views

Why to prefer using linq on IQueryable over linq on IEnumerable?

I know I can use linq syntax on collections that implement IQueryable or IEnumerable. Does IQueryable use lazy calaulation and optimization, while IEnumerable not? Does optimization include ...
9
votes
3answers
4k views

.NET Entity Framework - IEnumerable VS. IQueryable

Please see this line of code. This is an invocation of a stored procedure, which returns an ObjectResult<long?>. In order to extract the long values I added the Select: ...
2
votes
2answers
113 views

How to get the IQuerable<T> extension methods instead of the IEnumerable<T> extensions?

Probably really simple so please excuse my ignorance... To my knowledge, there are a couple flavours of the Where() extension method: Queryable.Where<TSource> Method ...
2
votes
1answer
1k views

Entity Framework - Querying from ObjectContext vs Querying from Navigation Property

I've noticed that depending on how I extract data from my Entity Framework model, I get different types of results. For example, when getting the list of employees in a particular department: If I ...
5
votes
4answers
529 views

need help converting C# foreach loop to lambda

Can the following loop be implemented using IQueryable, IEnumerable or lambda expressions with linq private bool functionName(int r, int c) { foreach (S s in sList) { if (s.L.R == r ...
4
votes
4answers
393 views

Shared IEnumerable<T> and IQueryable<T> in a multi-threaded application

I've few doubts regarding how shared IEnumerable and IQueryable is accessed in multi-threaded application. Consider this code snippet. ObservableCollection<SessionFile> files = /* some code */ ...
0
votes
2answers
316 views

How to write an Extension Methods for converting IQueryable<T> and IEnumerable<T> to ReadOnlyCollection

How to write an Extension Methods for converting IQueryable<T> and IEnumerable<T> to ReadOnlyCollection in Linq? Thanks
4
votes
3answers
3k views

Differences when using IEnumerable and IQueryable as a type of ObjectSet

As I understand it when I use LINQ extension methods (with lambda expression syntax) on IQueryable that is in the fact instance of ObjectSet they are translated into LINQ to SQL queries. What I mean ...
0
votes
1answer
612 views

Using the return type IQueryable<TABLE_1>

I am new to silverlight, many posts indicate using observablecollection is the best. Domainservice1 returns IQUERYABLE type. How to work with this return type in silverlight side? How to ...
17
votes
2answers
9k views

Differences between IQueryable, List, IEnumerator?

I am wondering what the different is between IQueryable, List, IEnumerator and when I should using each one? For instance when using linq to sql I would do something like this public ...
0
votes
2answers
526 views

disadvantages of using IQueryable !

Is there are any performance issues related to using IQueryable ? Besides, if I use a cursor instead of using IQueryable (is that better) . IQueryable vs IEnumerable vs IList ? I use MongoDB as my ...
176
votes
7answers
22k views

Returning IEnumerable<T> vs IQueryable<T>

what is the difference between returning iqueryable vs ienumerable. IQueryable<Customer> custs = from c in db.Customers where c.City == "<City>" select c; IEnumerable<Customer> ...
0
votes
1answer
244 views

Will my LinqToSql execution be deffered if i filter with IEnumerable<T> instead of IQueryable<T>?

I have been using these common EntityObjectFilters as a "pipes and filters" way to query from a collection a particular item with an ID: public static class EntityObjectFilters { public static T ...
54
votes
6answers
11k views

What's the difference between IQueryable and IEnumerable

I'm confused as to the difference. Being fairly new to .Net, I know I can query IEnumerables using the Linq extensions. So what is this IQueryable and how does it differ?
0
votes
1answer
1k views

WPF IEnumerable<T> vs IQueryable<T> as DataSource

I have a WPF ListView and I bind it to a IEnumerable<T> collection. Everything works fine, but when I bind it to the IQueryable<T> collection, there are no items in list anymore.. Why? Is ...
1
vote
1answer
595 views

What am I Doing Wrong with IQueryable<T>?

I thought IQueryable<T> was derrived from IEnumerable<T>, so why can't I access the results of my query like a collection of records? public bool DoLogIn(System.String strUserName, ...
1
vote
4answers
673 views

Explain in small words why IQueryable<T> is needed

There's this ... MSDN page, IQueryable(Of T) Interface. Can you do a better job explaining why we need a marker interface which doesn't add any methods over IEnumerable?
0
votes
3answers
1k views

LINQ to resx file?

I'm trying to build a way to get the key for a given piece of text in a given .resx file at runtime. Currently, I can open and read the file (Using ResXResourceReader) but I have to use a foreach to ...
7
votes
3answers
14k views

Convert Dataset to IQueryable<T> or IEnumerable<T>

Since there is no Linq to DB2 yet (c'mon IBM!), and I want to deal with IQueryables or IEnumerables in my code, how would I convert a DataTable to an IQueryable? Or an IEnumerable? I have an ...
3
votes
2answers
460 views

How do you transfer the execution of a Expression created by an IQueryable object to a IEnumerable?

In my code I'd like to make my repositories IQueryable. This way, the criteria for selection will be a linq expression tree. Now if I want to mock my repository in theorie this is very easy : just ...
4
votes
4answers
21k views

Linq To Sql return from function as IQueryable<T>

Ok, I have managed to get the following working public IQueryable getTicketInformation(int ticketID) { var ticketDetails = from tickets in _context.tickets join file in ...
166
votes
5answers
44k views

What is the difference between IQueryable<T> and IEnumerable<T>?

What is the difference between IQueryable<T> and IEnumerable<T>?
8
votes
3answers
4k views

EntitySet vs Table query performance in LINQ2SQL

In a LINQ to SQL class, why are the properties that are created from the foreign keys EntitySet objects, which implement IEnumerable, where as the objects on the DataContext are Table objects which ...