Tagged Questions
0
votes
0answers
23 views
How to convert weakly typed IQueryable to CSV in an MVC4 app
Due the dynamic nature of our application report data is defined in our application as IQueryable and not IQueryable. I need to convert this data to CSV. I have seen some examples but it is always ...
5
votes
1answer
389 views
List queries 20 times faster than IQueryable?
Here is a test that i have setup this evening. It was made to prove something different, but the outcome was not quite as i expected.
I'm running a test with 10000 random queries on an IQueryable ...
3
votes
4answers
830 views
List Inside IQueryable Object
Given the following:
public class Person
{
public int ID { get; set;}
public string Name { get; set;}
public IQueryable<Pet> Pets { get;set; }
}
public class Pet
{
public int id { get; ...
1
vote
1answer
277 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).
...
1
vote
0answers
161 views
IQueryable ToList() seems to lose the ordering
I've an EF4 model and a method to get paginated items (Anagrafica entity) from the model, something like (simplyfied):
public List<Anagrafica> Get(string SortExpression, int startRowIndex, int ...
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 ...
0
votes
2answers
1k views
Converting IQueryable to list and iterating using foreach
I am a noob to mvc.I am using a repository pattern with linq2sql using mvc
Just doing some test to get a clear idea everything around the it.
I am trying to output authors from author table.
public ...
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 ...
5
votes
2answers
3k 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 ...
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> ?