.NET Framework Interface, providing functionality to evaluate queries against a specific data source wherein the type of the data is not specified.
3
votes
2answers
2k views
Does AsQueryable() on ICollection really makes lazy execution?
I am using Entity Framework CodeFirst where I have used Parent Child relations using ICollection as
public class Person
{
public string UserName { get;set}
public ICollection<Blog> Blogs ...
1
vote
3answers
2k views
What instantiate-able types implementing IQueryable<T> are available in .Net 4.0?
Within the context of C# on .Net 4.0, are there any built-in objects that implement IQueryable<T>?
1
vote
2answers
614 views
Is there a way to dial down the OData Service reflection provider?
This is a continuation of an issue I'm still experiencing here. I'm trying to prevent the OData reflection provider from trying to expose ALL of the CLR classes in my assembly.
Consider the ...
1
vote
1answer
711 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)
...
4
votes
1answer
192 views
Linq Exception The expression must be a MemberExpression
i am working on a linq query and try to include entities upto multi level as per suggested in Mutilevel include in C# Linq.
So i write down a query like
query.Include(u => u.Stops.Select(d => ...
2
votes
2answers
902 views
How can you expose a multi-layer model that has derived classes and members for OData services?
I'm trying to expose a model to be available for OData services. The approach I'm currently taking is along the lines of:
1) Defining a class in the model to expose IQueryable collections such as:
...
0
votes
1answer
751 views
Sort and filter IQueryable in datagridview
I have a query made using linq to SQL which result will be shown in a datagridview with sorting and filtering options.
public IQueryable RegresaDepositosBancarios()
{
var ...
1
vote
1answer
151 views
Change data in an IQueryable object
I have an IQueryable object like this
var persons = from m in db.Persons
select m;
The returned fields will be: name: String, family: String, cityID: Int in it. I have another ...
1
vote
1answer
679 views
PredicateBuilder cannot convert to IQueryable?
i have a function:
private IEnumerable<Promotion> MatchesKeyword(IEnumerable<Promotion> list, String keyword)
{
...snip...
}
which right now performs a LINQ query:
private ...
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
3answers
198 views
Is it possible to modify an IQueryable expression manually
I'm pretty certain I know the answer is no but as a last ditch attempt I thought I'd ask the question here.
I'm using EF code first to query a table in the usual fashion
...
0
votes
1answer
534 views
Using Contains() on an IQueryable built with Dapper (with MVCContrib Grid)
I've got the following ActionResult in a ASP.NET MVC 3 project:
public ActionResult Index(string searchWord, GridSortOptions gridSortOptions, int? page)
{
var userListModel = new ...
6
votes
1answer
2k 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 ...
4
votes
4answers
3k 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 ...
1
vote
1answer
129 views
Can I easily evaluate many IQueryables in a single database call using Entity Framework?
Suppose I have a collection (of arbitrary size) of IQueryable<MyEntity> (all for the same MyEntity type). Each individual query has successfully been dynamically built to encapsulate various ...
3
votes
2answers
1k views
Cast IQueryable<EntityObject> to IQueryable<Specific>
We are trying to cast an instance of IQueryable<EntityObject> to an IQueryable<SpecificEntityObject>, the SpecificEntityObject type is only known at runtime.
We have tried using the code ...
1
vote
1answer
272 views
How to add SelectMany to an Expression Tree with Expression.Call
How do I achive the same result as:
var q = db.TableA.AsQueryable();
var q1 = Queryable.SelectMany(q, a => a.TableB, (a, t) => new { a = a, t = t });
var q2 = Queryable.SelectMany(q1, a=> ...
1
vote
4answers
124 views
Select categories where no product has inventory
I am trying to wrap my head around a Linq query to return a parent object only if all child objects contain a specific property.
I.e., as an example, return categories where all products linked to ...
2
votes
1answer
230 views
IQueryable parameters - how to view?
I have an LINQ-to-SQL (IQueryable) query, which I need to debug as it's horrendously slow. I've managed to get the T-SQL from the query (by simply hovering over the IQueryable object after I put a ...
-1
votes
1answer
246 views
String Linq to IQueryable
How can I do this :
string queryString = @"from c in Stuffs select c";
IQueryable<Stuffs> q = StringToIQueryable(queryString);
3
votes
2answers
2k views
How can I convert IQueryable<T> to ObjectQuery<T>?
I'm trying to apply the advice in this post: Tip 22 - How to make Include really Include
It suggests a workaround for ensure eager loading works in the Entity Framework (4.2). That workaround ...
10
votes
4answers
485 views
Determine whether an IQueryable<T> has been 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> ...
3
votes
2answers
332 views
Convert IQueryable<T> or LINQ query to unique string
I have some LINQ query (or IQueryable<T> object based on LINQ query) and want to get some unique string based on this query.
I have, for example:
var someValue = 10;
var query = (from i in ...
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 ...
6
votes
2answers
772 views
Generating Cache Keys from IQueryable For Caching Results of EF Code First Queries
I'm trying to implement a caching scheme for my EF Repository similar to the one blogged here. As the author and commenters have reported the limitation is that the key generation method cannot ...
0
votes
1answer
1k views
IQueryable.Where clause AND not working with multiple search parameters
I am having an issue with getting a Multiple search working with a IQueryable.Where Clause using the AND operator. I know that the problem is when a parameter is blank or null it is searching for a ...
2
votes
1answer
161 views
Generating dynamic IQueryable<T> from EF
I have a table full of orders, where each order has a state (for example: failed, denied, pending, cancelled or success)
How can I write a dynamic query to return orders, by state, where I'm passing ...
1
vote
1answer
299 views
combine datasource values asp.net
I am trying to see if their is any possible way to combine data source values. The structure of the data would be the same,
Year| Amount Used| Amount Collected | Amount Saved
What I want do do it ...
0
votes
1answer
84 views
Determine provider of IQueryble(Object)
Is it possible to determine if an IQuerable is a Linq-to-sql object or not? (Has a SQL statement as its source)
1
vote
3answers
415 views
LINQ-to-entities casting issue
I'm trying to filter a LINQ-to-entities query in a generic way, but I keep getting an error. Here is a piece of code:
private IQueryable<T> FilterDeletedEntities<T>(IQueryable<T> ...
0
votes
2answers
237 views
EF Query with conditional include that uses Joins
This is a follow up to another user's question. I have 5 tables
CompanyDetail
CompanyContacts FK to CompanyDetail
CompanyContactsSecurity FK to CompanyContact
UserDetail
...
0
votes
3answers
373 views
Is there a way to load data from an IQueryable into a Combobox without looping?
Basically I have an IQueryable of data that I wish to bind a string (for display) and an int (for data selected) into a combobox so the user can select the appropriate choice. Normally I would just ...
1
vote
1answer
612 views
Using Union with System.Linq.IQueryable
I am trying to use a union in my code:
var qryQuestions =
(from q in db.table1
where q.ID == ID
&& q.categoryID == categoryID
orderby q.questionOrder ascending
select ...
2
votes
1answer
77 views
Code Contract violation for projecting into an anonymous type using IQueryable
I'm having a hard time understanding why I am getting a code contract violation on the following piece of code:
// servicequery is of type ...
1
vote
2answers
1k views
No generic method 'Where' on type 'System.Linq.Queryable' is compatible with the supplied type arguments and arguments
I want to retrieve a specific record using IQueryable. But i get error 'No generic method 'Where' on type 'System.Linq.Queryable' is compatible with the supplied type arguments and arguments. No type ...
1
vote
2answers
243 views
ThenBy fails after Select
I'm trying to Order my main table(Contract) by some value in another table (via Join) then reduce it to Contracts again and sort it (ThenBy) by a value in Contract.
Here's the short version of my ...
0
votes
1answer
564 views
RIA DomainService IQueryable - Select
Following a couple different tutorials, I've been trying to build a "Silverlight Business Application" against a database I've created. I've found I have two problems. The one I'm asking about here is ...
6
votes
1answer
546 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 ...
1
vote
1answer
679 views
update values in IQueryable doesn't save to database
I am trying to update values that I use IQueryable to search my linq to classes datacontext, why I am trying is:
var records= dinner.GetRecords(id).WHERE(d=>d.Year == ...
2
votes
1answer
173 views
How can I get the MethodInfo of Queryable.Join
This may sound stupid but I cannot get the MethodInfo of Queryable.Join(...). I want to get it because of How to use a Type variable in a generic method call (C#)
It has 2 available method signatures ...
0
votes
2answers
297 views
Get real count of IQueryable collection after Distinct()
My code:
IQueryable<string> keys = dr.Localization.GetQuery().Select(x => x.Key).Distinct();
int count = keys.Count();
Collection keys has normal collection after distinct, it's good.
But ...
4
votes
1answer
603 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 ...
0
votes
1answer
298 views
Accessing contents of IQueryable using asp:Label/asp:TextBox
I'm trying to get at the contents of an IQueryable using a asp:Label. I have the following code-
In DAL:
public class ProdDetails
{
public string CustPartNo { get; set; }
public ...
3
votes
1answer
1k views
Which is easier, write a Custom OData uri parser or a custom IQueryable provider?
I'm wanting to create an OData service that returns data from multiple sources. For this reason I cannot use WCF Data Services with any of the out-of-box providers, plus we really want more control ...
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:
...
1
vote
1answer
282 views
Passing query expressions over the wire with WCF
I want to implement something like a WCF OData provider but using NetTcpBinding instead of WebHttpBinding / REST. I want the client to be able to write linq queries that are transparently serialized ...
1
vote
1answer
279 views
IQueryable<T> Question
Currently I return everything from my Repo as a List. I am looking to change these to IQueryable just so people can refine the results and not suffer from another sql request(I am using nhibernate).
...
2
votes
2answers
291 views
IQueryable LINQ provider and SQL injection?
I'm working on a LINQ provider that uses the IQ Toolkit to tranlate LINQ queries to SQL queries. Are the classes provided by the IQ Toolkit safe from SQL injection attacks? If not, what I have to do ...
3
votes
3answers
487 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 ...
0
votes
2answers
336 views
Serialize iqueryable
I have an ascx user control with and Entity Framework IQueryable property like this:
public IQueryable<Category> DataSource
{
get { return ViewState["Category"] as IQueryable; }
...


