0
votes
0answers
8 views
Returning Custom Classes as IQueryable so doesn’t have ‘has no supported translation to SQL’ error
I have the below call in my repository where I return IQueryable of Node (my business object class) then I have a filter function in my service layer which adds to the IQueryable c …
1
vote
1answer
60 views
How can I make a generic IQueryable in Linq?
Hi everyone!!
I'm working in a ASP.NET MVC project and I have this particular situation: I have 3 pages - Product, Order, User. And in each of these pages I have a link calling th …
5
votes
2answers
297 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 …
1
vote
1answer
34 views
Linq - How to turn IQueryable<IEnumerable> into IQueryable
Hi,
I have a simple linq statement that isn't quite returning what I would like. I understand why, I just don't know how to wriet it to get what I want.
The query is as follows:
a …
1
vote
5answers
128 views
How to handle paging IQueryable with Linq To Entities? (problem with OrderBy)
Hi There,
I am currently building a simple ASP.NET MVC site using Linq to Entities. My first foray into this world was nerd dinner, which is where I found the paginated list code …
0
votes
2answers
65 views
Iterating over an unknown IQueryable’s properties?
Forgive me if this has been asked before; I couldn't find anything close after a few searches:
I'm trying to write an ActionFilter in MVC that will "intercept" an IQueryable and n …
1
vote
2answers
72 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 relat …
1
vote
4answers
57 views
Extending IQueryable to return objects where a property contains a string
I see a lot of code similar to the following
var customrs = MyDataContext.Customers.Where(...);
if (!String.IsNullOrEmpty(input)) {
customers = customers.Where(c => c.Email.C …
0
votes
2answers
38 views
assign nullable objects for returning IQueryable
I am returning IQueryable<Customer> to the other method for some querying operations. The return method looks like:
return from cust in _dbCustList
select new …
0
votes
1answer
86 views
LINQ Query returns ienumerable but i need IOrderedQueryable and ASQueryable fails?
Can anyone tell me why my query is returning IEnumerable, and not IOrderedQueryable or IQueryable?
I am basically injecting the results into a model/class and its failing. If I re …
1
vote
2answers
265 views
IQueryable Where Extention Method with Or’s
Duplicate:
http://stackoverflow.com/questions/782339/how-to-dynamically-add-or-operator-to-where-clause-in-linq
I want to loop through a array of string values and build a li …
0
votes
0answers
32 views
How can I convert an object System.Data.Linq.DataQuery to System.Linq.IQueryable
How can I convert an object System.Data.Linq.DataQuery to System.Linq.IQueryable
I'm working with VB And Silverlight and the source code of my query is as follows
Public Functio …
0
votes
1answer
59 views
How can I convert an object System.Data.Linq.DataQuery to System.Linq.IQueryable
How can I convert an object System.Data.Linq.DataQuery to System.Linq.IQueryable
I'm working with Visual Basic/Silverlight and the source code of my query is as follows
Public F …
0
votes
1answer
37 views
How to implement a Query with IQueryable in SilverLight
I have two tables customers, pay and want to implement a gridview in silverlight with the outcome of the relationship of these two tables, the query is as follows
SELECT Pa.Ti …
1
vote
2answers
66 views
Possible to convert IQueryable<Derived> to IQueryable<Base>?
I know about covariance, and I know that in general it will not be possible in C# until v4.0.
However I am wondering about a specific case. Is there some way of getting convert …
