Tagged Questions
1
vote
1answer
73 views
Build up IQueryable based on method parameters
I have an API method similar to the below.
Is it possible to append the IQueryable so the final query has a list of items to execute a where statement or should I use the SqlQuery property and build ...
2
votes
1answer
77 views
C# - Select programmable attribute in Select clause
Please excuse my ignorance when asking this question as I am still learning NHibernate and Linq. I did some searching around but I do not understand how or if the solution to my question is possible
...
0
votes
2answers
310 views
C# IQueryable definition for different entity types
//I need to deifne productQuery here
if (test == true)
{
var productQuery = ordersRepository.ProductIn; //it returns IQueryable<ProductIn> type
}
else
{
var ...
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 ...
1
vote
2answers
560 views
Returning IQueryable<T> From Generic Method
So, I have the following code:
private readonly Dictionary<string, IGame> _gameLookup = new Dictionary<string, IGame>();
public T LookupGame<T>(string name) where T : IGame
...
2
votes
2answers
695 views
Unit Test IQueryable
I am trying to write a unit test for a method which takes an IQueryable collection.
How should I instantiate the collection in my unit test before I pass it to the method for test? This is the ...
1
vote
4answers
625 views
Is it possible to add two IQueryable's together?
I've been using Union on IQueryable<> (with the same type) to try to get one collection produced from two collections, but it is not working. I believe my understanding is at fault with regards to ...
3
votes
1answer
4k views
IQueryable IGrouping how to work
i return such type IQueryable< IGrouping<int, Invoice>> List()
how can i work with it? like with generic List<Invoice> ?
4
votes
1answer
704 views
Hashset vs. IQueryable
Recently I was working on implementing a small snippet that caches my results and the way I was doing it was using a Dictionary as follows:
private Dictionary<ID, IQueryable<Results>> ...
1
vote
1answer
921 views
How can I make a generic IQueryable in Linq?
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 the same ActionResult differing only ...
1
vote
3answers
2k views
How to get the last object in a generic list?
I am passing a populated SelectList to my View and I want to default the selected value to the last record in the list. So far I've got:
IQueryable<BuildNumber> projBuildNos = ...
3
votes
4answers
5k views
How to handle paging IQueryable with Linq To Entities? (problem with OrderBy)
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 that I am attempting to use. ...
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 ...