Tagged Questions

.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

46
votes
2answers
5k 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> ...
37
votes
5answers
4k 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?
36
votes
3answers
6k 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 ...
28
votes
4answers
4k views

Automatically Compile Linq Queries

We've found that compiling our Linq queries is much, much faster than them having to compile each time, so we would like to start using compiled queries. The problem is that it makes code harder to ...
23
votes
3answers
22k 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?
20
votes
2answers
2k views

C#: Repository Methods vs. Extending IQueryable

I have repositories (e.g. ContactRepository, UserRepository and so forth) which encapsulate data access to the domain model. When I was looking at searching for data, e.g. finding a contact whose ...
18
votes
4answers
1k 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: ...
17
votes
4answers
9k 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 ...
15
votes
4answers
3k 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 ...
13
votes
2answers
6k views

Design Patterns using IQueryable<T>

With the introduction of .NET 3.5 and the IQueryable<T> interface, new patterns will emerge. While I have seen a number of implementations of the Specification pattern, I have not seen many ...
12
votes
3answers
908 views

Enumerable.Empty<T>() equivalent for IQueryable

When a method returns IEnumerable<T> and I do not have anything to return, we can use Enumerable.Empty<T>(). Is there an equivalent to the above for a method returning IQueryable<T> ...
10
votes
2answers
3k views

IList<T> to IQueryable<T>

I have an List and I'd like to wrap it into an IQueryable. Is this possible?
9
votes
2answers
316 views

List<T> to implement IQueryable<T>

I'm trying to create a mock for my IRepository interface: public interface IRepository<T> : ICollection<T>, IQueryable<T> { } With this implementation: public class ...
9
votes
5answers
25k views

Linq To Sql: Cannot implicitly convert type IEnumerable to IQueryable

Obfuscated Scenario: A person has zero, one or many pets. Using Linq to Sql, the need is to get an IQueryable list of pets for the given personID. Here's the poorly mangled/butchered/obfuscated ...
9
votes
1answer
2k 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 ...
8
votes
2answers
2k 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 ...
8
votes
3answers
3k views

EntitySet vs Table

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 ...
7
votes
3answers
99 views

Determine whether an IQueryable<T> is ordered or not

Is there a way to know if an IQueryable<T> has been ordered (using OrderBy or OrderbyDescending)? So I know whether to call OrderBy or ThenBy on the collection. IQueryable<Contact> ...
7
votes
3answers
159 views

Is there a C# LINQ syntax for the Queryable.SelectMany() method?

When writing a query using C# LINQ syntax, is there a way to use the Queryable.SelectMany method from the keyword syntax? For string[] text = { "Albert was here", "Burke slept ...
7
votes
3answers
203 views

C# strange lambda behavior

Could someone point out why this could be happening: I am using NHibernate and the Linq provider for it. The code that fails is listed here: var sequence = session.Query<T>(); var ...
7
votes
2answers
462 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 { ...
6
votes
1answer
127 views

Group join causes IQueryable to turn into IEnumerable, why?

I am accessing a remote data source and found that a group join causes an IQueryable query to be transformed into an IEnumerable, question: will this affect performance? I want to offload as much of ...
6
votes
2answers
427 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: ...
6
votes
3answers
526 views

Entity Framework Casting Error

The following works perfectly: IQueryable<Property> PropertyQuery = PropertyDAO.SearchWithAdditionalParameters(/* elided */); IQueryable<long> propertyIdQuery = PropertyQuery.Select(p ...
6
votes
1answer
190 views

Normalizing chains of .Skip() and .Take() calls

I'm trying to normalize arbitrary chains of .Skip() and .Take() calls to a single .Skip() call followed by an optional single .Take() call. Here are some examples of expected results, but I'm not ...
6
votes
3answers
2k 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 ...
6
votes
5answers
2k 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 ...
6
votes
3answers
2k views

count VS select in LINQ - which is faster?

I'm using IQueryable<T> interfaces throughout my application and defer execution of SQL on the DB until methods like .ToList() I will need to find the Count of certain lists sometimes -without- ...
5
votes
2answers
161 views

Returning Enumerable.Empty<T>().AsQueryable() a bad idea?

This is probably best explained with some code: public IQueryable<DatabaseRecord> GetQueryableLinkedRecords() { if(this.currentlyHeldIds.Count() == 0) { return ...
5
votes
5answers
519 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 ...
5
votes
2answers
2k 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 ...
5
votes
2answers
1k 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 ...
5
votes
2answers
1k views

Entity Framework and Repository Pattern (problem with IQueryable)

I just switched from Linq 2 SQL to Entity Framework, and I'm seeing some strange behaviors in EF that I'm hoping someone can help with. I tried Googling around, but I wasn't able to find other people ...
5
votes
1answer
69 views

Good Fast Way to Let Users Visualize and Explore Relational Data?

I'm looking for either a web-based or Windows-based way to point to a relational data source using automated schema exploration (or, even better, a reflection-based approach that would work on any ...
5
votes
2answers
1k views

Problem creating empty IQueryable<T> object

Basically i want to merge two Iqueryable to one Iqueryable and then return the complete record set after my loop ends. It runs perfectly but in the end my objret have nothing but when i debug the loop ...
5
votes
2answers
2k views

IQueryable problems using WCF

I have a quite simple WCF service method which returns an IQueryable, just for testing. Perhaps I got something wrong when trying to understand what IQueryable is designed for. I clearly plan to use ...
5
votes
2answers
240 views

Expanding properties for an IQueryable query

I have the following fictional domain classes: public class Pony { public string Name { get; set; } public DateTime FoundDate { get; set; } } public class Person { public ...
5
votes
1answer
564 views

Should repositories expose IQueryable to service layer or perform filtering in the implementation?

I'm trying to decide on the best pattern for data access in my MVC application. Currently, having followed the MVC storefront series, I am using repositories, exposing IQueryable to a service layer, ...
5
votes
2answers
1k views

Linq filtering an IQueryable<T> (System.Data.Linq.DataQuery) object by a List<T> (System.Collection.Generic.List) object?

My IQueryable line is: // find all timesheets for this period - from db so System.Data.Linq.DataQuery var timesheets = _timesheetRepository.FindByPeriod(dte1, dte2); My List line is: // get my ...
5
votes
4answers
7k 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 = ...
5
votes
4answers
863 views

ASP MVC: Should services return IQueryable's?

What do you think? should your DAO return an IQueryable to use it in your controllers? Thanks in advance
5
votes
2answers
179 views

What's the difference between these two LINQtoSQL statements?

These two statements look the same logically to me, but they're resulting in different SQL being generated: #1 var people = _DB.People.Where(p => p.Status == MyPersonEnum.STUDENT.ToString()); var ...
5
votes
1answer
235 views

Why is my LINQ statement returning IEnumerable?

I have two very similar methods: public IQueryable<User> Find(Func<User, bool> exp) { return db.Users.Where(exp); } public IQueryable<User> All() { return db.Users.Where(x ...
5
votes
2answers
10k 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 ...
5
votes
3answers
2k 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
1answer
87 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 ...
4
votes
1answer
103 views

Linq query with Contains only works with is IQueryable is in external variable

I am using Entity Framework with Linq to Entities, trying to select some data from my database. When I create a Linq query that uses the method IQueryable<int>.Contains, it can only filter the ...
4
votes
1answer
471 views

Using IQueryable<TEntity> instead DbSet<TEntity> problem

i stumbled to the next problem... I have database context: // For support unit testing... public interface IDbContext : IDisposable { IQueryable<Hardware> Hardwares { get; } ...
4
votes
4answers
150 views

How get propery value of an dynamic type?

[update] I'm sorry, i should tag this question as MVC-2, I pass result of query into view's model, so i must specify type of my model in View's header defintion. I declare it like this: ...
4
votes
4answers
230 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 ...

1 2 3 4 5 7