.NET Framework Interface, providing functionality to evaluate queries against a specific data source wherein the type of the data is not specified.

learn more… | top users | synonyms

172
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> ...
165
votes
5answers
44k views

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

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

To return IQueryable<T> or not return IQueryable<T>

I have a repository class that wraps my LINQ to SQL Data Context. The repository class is a business line class that contains all the data tier logic (and caching and such). Here's my v1 of my repo ...
9
votes
2answers
4k views

ASP.MVC: Repository that reflects IQueryable but not Linq to SQL, DDD How To question

I want to create a DDD repository that returns IQueryable Entities that match the Linq to SQL underlying classes, minus any relations. I can easily return Entities minus the relations with a Linq ...
5
votes
1answer
376 views

How to mock the limitations of EntityFramework's implementation of IQueryable

I am currently writing unit tests for my repository implementation in an MVC4 application. In order to mock the data context, I started by adopting some ideas from this post, but I have now discovered ...
1
vote
1answer
653 views

IQueryable & Repositories - take 2?

I have to admit I have been carrying the "Repository should not return IQueryable" banner because it is harder to test. I have been influenced by the answers to other questions like this and this. ...
64
votes
3answers
59k views

Using IQueryable with Linq

What is the use of IQueryable in the context of Linq. Is it used for developing extension methods or any other purpose?
54
votes
6answers
10k 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?
28
votes
4answers
17k views

Why use AsQueryable() instead of List()

I'm getting into using the Repository Pattern for data access with the Entity Framework and LINQ as the underpinning of implementation of the non-Test Repository. Most samples I see return ...
18
votes
2answers
6k views

IList<T> to IQueryable<T>

I have an List and I'd like to wrap it into an IQueryable. Is this possible?
10
votes
3answers
3k views

Expose IQueryable Over WCF Service

I've been learning about IQueryable and lazy loading/deferred execution of queries. Is it possible to expose this functionality over WCF? I'd like to expose a LINQ-to-SQL service that returns an ...
11
votes
1answer
3k views

C#, Linq2Sql: Is it possible to concatenate two queryables into one?

I have one queryable where I have used various Where and WhereBetween statements to narrow the collection down to a certain set. Now I need to add kind of a Where || WhereBetween. In other words, I ...
6
votes
5answers
3k views

Parse string into a LINQ query

What method would be considered best practice for parsing a LINQ string into a query? Or in other words, what approach makes the most sense to convert: string query = @"from element in source ...
3
votes
3answers
1k views

IQueryable Repository with StructureMap (IoC) - How do i Implement IDisposable?

If i have the following Repository: public IQueryable<User> Users() { var db = new SqlDataContext(); return db.Users; } I understand that the connection is opened only when the query ...
2
votes
1answer
1k views

Get all 'where' calls using ExpressionVisitor

I have a query, like such: var query = from sessions in dataSet where (names.Contains(sessions.Username)) where (sessions.Login.TimeOfAction == dt) ...
7
votes
1answer
1k views

Repository / IQueryable / Query Object

I am building a repository and I've seen in many places 2 reasons not to expose IQueryable outside the repository. 1) The first is because different LINQ providers could behave differently, and this ...
3
votes
4answers
1k views

IQueryable OfType<T> where T is a runtime Type

I need to be able to get something similar to the following to work: Type type = ??? // something decided at runtime with .GetType or typeof; object[] entityList = ...
9
votes
2answers
624 views

Linq based generic alternate to Predicate<T>?

I have an interface called ICatalog as shown below where each ICatalog has a name and a method that will return items based on a Predicate<Item> function. public interface ICatalog { ...
1
vote
1answer
709 views

IQueryable<T> with EntityObject using Generics & Interfaces (Possible?)

I have a search repository for EntityFramework 4.0 using LinqKit with the following search function: public IQueryable<T> Search<T>(Expression<Func<T, bool>> predicate) ...
5
votes
2answers
3k views

LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable error

I have the following LINQ code: var posts = (from p in db.Posts .Include("Site") .Include("PostStatus") where p.Public == false orderby p.PublicationTime select p); if ...
2
votes
4answers
1k views

How do I cache an IQueryable object?

I've got this method that returns a Linq-to-SQL query for all the rows in a 'UserStatus' table: public IQueryable<BLL.Entity.UserStatus> GetAll() { var query = from e in ...
1
vote
3answers
121 views

The method 'Where' cannot follow the method 'Select' or is not supported

Why am I getting: The method 'Where' cannot follow the method 'Select' or is not supported. Try writing the query in terms of supported methods or call the 'AsEnumerable' or 'ToList' method ...
1
vote
2answers
2k views

Extend IQueryable<T> Where() as OR instead of AND relationship

I am using my own extension methods of IQueryable<> to create chainable queries such as FindAll().FindInZip(12345).NameStartsWith("XYZ").OrderByHowIWantIt() etc. which then on deferred execution ...
15
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 ...
17
votes
4answers
4k views

How can I write a clean Repository without exposing IQueryable to the rest of my application?

So, I've read all the Q&A's here on SO regarding the subject of whether or not to expose IQueryable to the rest of your project or not (see here, and here), and I've ultimately decided that I ...
24
votes
4answers
2k views

Should I return IEnumerable<T> or IQueryable<T> from my DAL?

I know this could be opinion, but I'm looking for best practices. As I understand, IQueryable implements IEnumerable, so in my DAL, I currently have method signatures like the following: ...
6
votes
1answer
1k views

IQueryable vs. IEnumerable in the repository pattern , lazy loading

I have read some articles that state that IEnumerable used to mimic stored procedures or restrict your database. Lost lazy loading ability on the external provider. Where as IQueryable to give ...
6
votes
5answers
3k views

Performing part of a IQueryable query and deferring the rest to Linq for Objects

I have a Linq provider that sucessfully goes and gets data from my chosen datasource, but what I would like to do now that I have my filtered resultset, is allow Linq to Objects to process the rest of ...
4
votes
2answers
672 views

Convert Predicate<T> to Expression<Func<T, bool>>

Is possible to convert a Predicate<T> to Expression<Func<T, bool>> in some way? I would like to use the next IQueryable function using the filters of the my ICollectionView: public ...
4
votes
1answer
1k views

Access DataContext behind IQueryable

Is it possible to access the DataContext object behind an IQueryable? If so, how?
3
votes
1answer
640 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 = ...
3
votes
2answers
1k views

refactoring LINQ IQueryable expression to remove duplicated portions of queries

I have some linq queries that have redundancy I'd like to factor out a single piece of code. These are join experssions that are IQueryable, and its important I don't cause the query to be evaluated ...
12
votes
4answers
4k views

How do I mock IQueryable<T>

I am creating a repository that exposes IQueryable. What is the best way to mock this out for my unit testing? Since I am using RhinoMocks for the rest of my mock objects, I tried to do the ...
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: ...
7
votes
2answers
803 views

EF builds EntityCollection, but I (think I) want IQueryable

I have an entity A with a simple navigation property B. For any given instance of A, we expect several related thousand instances of B. There is no case where I call something like: foreach(var x ...
6
votes
4answers
18k views

Cannot implicitly convert type 'System.Linq.IQueryable<int>' to 'int?'

var cityList = from country in doc.Element("result").Element("cities").Descendants("city") select new { Name = country.Element("name").Value, Code = ...
6
votes
4answers
2k views

How to maintain LINQ deferred execution?

Suppose I have an IQueryable<T> expression that I'd like to encapsulate the definition of, store it and reuse it or embed it in a larger query later. For example: IQueryable<Foo> myQuery ...
6
votes
1answer
3k views

What is the best way to cast each item in a LINQ to Entities query to an interface?

I have an entity object 'User' which implements 'IUser': IQueryable<User> users = Db.User; return users; But what I actually want to return is: IQueryable<IUser> So what is the best ...
6
votes
2answers
3k views

NHibernate testing, mocking ISession

I am using NHibernate and Rhinomocks and having trouble testing what I want. I would like to test the following repository method without hitting the database (where _session is injected into the ...
4
votes
3answers
271 views

How to formulate an IQueryable to query a recursive database table?

I have a database table like this: Entity --------------------- ID int PK ParentID int FK Code varchar Text text The ParentID field is a foreign key with another record ...
4
votes
4answers
2k views

IQueryable C# Select

this is my code... but i need select only column to display in my Datagridview. I Need the code to select only some columns.. example Select{t => t.usu_Login, t => t.usu_Login} public ...
4
votes
1answer
3k views

Create fully dynamic where clause with expression tree and execute on IQueryable

At point (3) in my code I have defined a query called query1 in which I defined a .Where lambda expression. This query is in some way dynamic but still contains static elements, it always refers to ...
4
votes
2answers
2k views

Converting IQueryable<object> results to comma delimited string

I have a LINQ query that returns all absences for an employee. The first part of the linq statement gets a basic list of the employees details, but I also return an IQueryable list of illnesses ...
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 ...
3
votes
3answers
485 views

What would you put into the unit test of a repository class (data access layer)?

I'd like to write a unit test for my data access layer to make sure that everything works allright in it. The question is, what kind of things should I put into the tests? The DAL is a static ...
3
votes
3answers
2k views

Binding GridView to IQueryable<T>

This question is purely academic, because I'd never dream of doing this in real code. :P Using LINQ to SQL, I want to bind an IQueryable to a GridView. I tried doing this with the following code, but ...
3
votes
2answers
971 views

IQueryable (non generic) : missing Count and Skip ? it works with IQueryable<T>

i have an extension method which a person was really helpful to give me... it does an orderby on IQueryable ... but i wanted one to do a normal IQueryable (non generic) Here is the code, The count ...
3
votes
2answers
4k views

Adding new items dynamically to IQueryable hard-coded fake repository

Building an application, before using a real database, just to get things work I can first use a hard-coded list as a fake, in-memory repository: public class FakeProductsRepository { private ...
3
votes
4answers
753 views

How to return an IQueryable<Something> as an IQueryable<ISomething>

I have a class Something that implements ISomething. How can I convert/cast from an IQueryable<Something> to an IQueryable<ISomething>. When I try to cast, I am able to compile, but the ...
2
votes
1answer
4k views

Entity Framework - IQueryable to DataTable

I'm trying to convert an IQueryable object to a DataTable. Here's an example of a query that I would like to convert to a DataTable: var query = DbContext.SomeObjectSet.Select(x => new { ...

1 2