.NET Framework Interface, providing functionality to evaluate queries against a specific data source wherein the type of the data is not specified.
3
votes
0answers
43 views
Why is IEnumerable faster than IQueryable?
Introduction
I've been researching the difference between the two. I've decided to get my hands dirty and test them because I want to see the performance difference between the two (if any) and ...
0
votes
1answer
51 views
How can I get multiple data?
I can show just one customer, I know the problem is because I use FirstOrDefault in my LINQ.
How can get another customer? I still don't understand the concept of IQueryable or IEnumerable.
public ...
1
vote
1answer
67 views
Best practice to connect DAL to UI layer
I've always been told that designing your application using 3 tiers model is the best practice to separate the data layer and the business logic layer from the presentation.
But when I come to use ...
0
votes
0answers
15 views
how to get the sql sentence of the IQueryable and the ToList?
I would like to know how I can get the sql sentence of an IQueryable and a Tolist.
I would like to compare this cases:
List<MyTable> lstresult01 = myContext.Mytable.Where(t=>t.ID == ...
1
vote
1answer
13 views
this has the advanteages of the IQueryable?
If I dont' wrong, I can get the data from a database in to ways:
First with an IEnumerable:
myContext.MyTable.ToList();
With an IQeryable:
IQueryable<MyTable> query = myContext.Mytable;
I ...
0
votes
0answers
33 views
Different results of same logic(Find and SelectMany)
I came across an interesting problem. I use two methods in different places in my project.
first:
public IQueryable<Company> GetMyCompaniesByUserId(Guid userId)
{
var obj = ...
0
votes
1answer
31 views
Show images from IQueryable in View
I have a question about showing images loaded from a mysql database in a view.
In my database table "deliverables" I have "item_id", "deliverable_image" and "afstudeerrichting_id". "item_id" and ...
0
votes
0answers
55 views
How do I mock an iqueryable that joins another iqueryable
What I'm trying to do is mock a method that returns IQueryable, the mocked object is then passed into my isolated method that I'm trying to test. The mocked object (IQueryable) is joined to a dbset ...
0
votes
0answers
35 views
How to make a linq query wrapper function?
I have come accross this code on SO and I am trying to convert it to VB.net however I cannot find type 'Result'
public Result QueryWithRetry(IQueryable query)
{
RetryPolicy retry = new ...
1
vote
0answers
68 views
c# iqueryable to list with dynamic where clause
i've been having some problems with this question in here:
IQueryable to List<T>
i've tried it. and it didn't work. i've tried using the answer given in a wcf webservice using net 4.0 and ...
0
votes
2answers
72 views
What are alternatives to using IQueryable<T> in Repository Pattern?
I am ASP.NET MVC newbie (but .NET experienced dev) and I am trying to learn how to properly set web application infrastructure.
Repository pattern is what I am copping these days and after reading ...
0
votes
0answers
38 views
Store and Retrieve Linq query From Session
I stored a query in session. As you know this query converted to object. i want use result of this query in somewhere and need to use WHERE on it.
var FacilityQuery = from O in db.Owners
...
0
votes
1answer
15 views
Extract paging from IQueryable
I'm using a function to allow query composition from Web UI and I would to implement paging functionality which it will be available for dataBound controls such as ObjectDataSource, gridView, etc:
...
1
vote
2answers
65 views
Exception when I use Count method in Queryable class
In WinRT when I call the count method in Queryable class for the IOrderedEnumerable instance it will throw the exception.
DoWork(emp); //Working fine
DoWork(emp.OrderBy(objects => ...
0
votes
1answer
34 views
Linq2Sql IQueryable inside another IQueryable
I'm trying to structure my code and be able to better maintain some of my LINQ queries. Actually I created a new helper class with some functions but I'm having some problems executing some of my ...
0
votes
0answers
20 views
Is it possible to intercept a response from a Data Service Query to materialize a different entity type?
I'm running out of ideas on a problem that I've got with WCF Data Services. The gist of it is that I'm executing a data service query which uses an interface to represent the queryable type.
...
1
vote
0answers
33 views
How to get the maximum value from local database in windows phone?
I need to get the maximum value from table that should belongs to particular category.
My code as follows :
private int getHighScores(int _playMode)
{
int maxScore = 0;
using ...
0
votes
0answers
102 views
Why is it that Entity Framework gives the error “Enumeration yielded no results” for typical many-to-many functionality?
Our ASP.NET C# web application is used in the following environment .NET Framework 4
ASP.NET Web Forms.
IIS 7
Windows 2008
Visual Studio 2010
.NET IDE C#
HTTPS ( SSL )
-Entity Framework 5
In ...
0
votes
0answers
33 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 ...
0
votes
1answer
42 views
DbSet<TEntity>, IQueryable<TEntity> - OOP concepts
public interface IDepartmentDataSource
{
IQueryable<Department> Departments { get; }
}
public class DepartmentDb : DbContext, IDepartmentDataSource
{
//Error: property cannot implement ...
0
votes
1answer
80 views
Where or (not and) with list of expressions c#
I got the following code
public class Personnel {
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int ...
0
votes
2answers
88 views
Using IQueryable select to filter columns
I've been exploring WEB API based on the guide at www.asp.net, and I've run into a problem when trying to filter columns from a table.
My code is simply this:
// GET api/Admin
public ...
1
vote
1answer
63 views
Does not get exception when collection is empty with Sum method and Nhibernate
I have a IQueryable with NHibernate and I would like to have an linq query to sum an specific column, but, when my condition on Where method give me an empty result I do not want to get an exception, ...
0
votes
1answer
55 views
Save File Prompt instead of FileWriteAllBytes
Long time lurker first time poster. Working with .Net / Linq for just a few years so I'm sure I'm missing something here. After countless hours of research I need help.
I based my code on a ...
0
votes
1answer
135 views
Cross-Join Syntax in Entity Framework / IQueryable
I'm trying to deepen my education about IQueryable custom providers and expression trees. I'm interested in custom parsing a cross-join (viz. SelectMany), and I'm trying to understand if that is ...
0
votes
1answer
179 views
How to format iqueryable mvc 4 web api requests?
I'd like to use iqueryable on all my collections so that I get all of the odata features. However I need to format the response of the request with the following fields;
{
href: "url to resouce",
...
1
vote
3answers
165 views
The method 'Where' cannot follow the method 'Select' or is not supported
Why am I getting:
The method 'Where' cannot follow the method 'Select' or is not
supported. Try writing the query in terms of supported methods or call
the 'AsEnumerable' or 'ToList' method ...
2
votes
2answers
352 views
Entity Framework 5, Code First, Full Text Search but IQueriable via CreateQuery?
I am using .NET 4.5 and EF 5 with Code First approach and now I need to implement Full Text Search.
I have already read a lot about it and so far my conclusions are:
Stored procedures nor Table ...
0
votes
1answer
77 views
How get AutoMapper to: ignore non mapped properties, include conventional mapping and work with QueryableExtensions
I've found two solution to ignore non mapped properties but one of them also ignore the conventional mappings, and the second doesn't work with QueryableExtensions to return an IQueryable (don't know ...
0
votes
2answers
55 views
Build LambdaExpression with custom parameter selection
Complete definition of my extension method goes first.
static IQueryable<TResult> WithTicketNumbers<T, TResult>(
this IQueryable<T> q,
Expression<Func<T, ...
0
votes
1answer
99 views
IEnumerable lambda expression for Where()
following code works on a collection of type IQueryable:
Expression<Func<Activity, bool>> filter = e => e.IsDeleted && e.CategoryId == 1;
But this expression doesn't work on ...
1
vote
1answer
68 views
LINQ to Entities does not recognize the method 'System.String get_Item(System.String)' method
I've looked at the various solutions here but none of them seem to work for me, probably because I'm too new to all this and am groping in the dark a bit. In the code below, the object "appointment" ...
2
votes
2answers
179 views
Dynamic Func<IQueryable<TEntity>, IOrderedQueryable<TEntity>> Expression
I am using patterns mentioned here
http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application
And i am ...
0
votes
0answers
18 views
IQueryable change properties
How to achieve the last part in the comment?
(I want to do something like the following going just one time to the database to make this last change so I cannot convert iq2 to a List)
class Class1
{
...
2
votes
3answers
89 views
LINQ and selection rows from big database
I have some database ang now it contains a table with about 100 rows. But in future it will have not 100 but 1 000 000+ rows and I have to be careful with my web application I'm developing now.
...
0
votes
1answer
30 views
Extending IQueryable to modify default query behavior
I'm not sure if this is the correct way to approach this, so I'm hoping to get a lead on that via this question.
Say I have a database with a certain recurring column in most of the tables. In most ...
2
votes
1answer
95 views
IQueryable command timeout
I have one problem. I'm using Linq and IQueryable interface to work with my database.
That is my code:
public static List<Stat> GetStateList(DataClassesDataContext db, int pageNumber,
int ...
3
votes
1answer
173 views
EF Reference gets lost when Web API returns IQueryable
I have been looking for quite some time now on this problem.
Here's the deal.
I'm building a website that calls to a Web API to get its data. My Web API uses a library, working with repository ...
1
vote
0answers
85 views
Dynamic query creation (dynamic search engine)
We are using ASP.NET MVC3, EF 4.3.1, DynamicQuery library
We are currently developping a dynamic search engine that could perform search query agains multiple database.
So we have an interface that ...
0
votes
2answers
165 views
Risks of using OData and IQueryable
I have seen many tutorials about making SPA (single page application) and many of them uses an external library such as breezejs and jaydatajs in order to get an automated dataservice layer.
These ...
0
votes
0answers
252 views
Wrapper for IQueryable with custom IQueryProvider for EntityFramework DbSet
Im trying to build a wrapper IOrderedQueryable<T> on top of the DBSet<T>, to process any Expression before it is executed agains the internal DB provider.
So ive built a sample ...
0
votes
1answer
37 views
linq with Include and many-to-many
I have rather specific requirement for my Linq statement. I've looked through dozens of examples, but could't find satisfying answer.
I have a collection of courses, which holds collection of groups, ...
1
vote
1answer
88 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 ...
1
vote
0answers
106 views
QueryOver : Case Sensitive Like or Equals
There are many posts online and on stack overflow talking about solving the issue of case insensitive likes. I guess this is due to these peoples database being by default case sensitive.
Sql server ...
0
votes
1answer
36 views
Is there any way of knowing the content of an IQueryable object without using Reflection?
I have to work with a given class "QueryGenerator" that generates dynamic queries from selected Tables and Columns by the user using a StringConnection and a Provider. Anyways, i don't have to know ...
0
votes
2answers
137 views
Returning IEnumerable when the object is an IQueryable
I'm a bit confused about IEnumerable and IQueryable and interswapping of usages with Entity Framework. I've tried to do as much googling as I can on the subject but it hasn't seemed to help. So ...
0
votes
3answers
372 views
Composing Expression<Func<T, bool>> predicates
I have a method that returns an
Expression<Func<T, bool>>
When I use this as a predicate in a where clause in EF this works fine, until I try to add more items to the predicate with ...
1
vote
1answer
58 views
How do I filter an Objectset multiple times?
I've got an Objectset that represents a set of people and I want to use it as the DataSource for a DataGridView control. But before that, I want to filter the set of people based on a search string. ...
3
votes
2answers
57 views
Convert from IQueryble<T> to T
public DoctorClass GetById(int id)
{
using (var context = new EmrContext())
{
var query = from d in context.Doctors
join c in context.Users on ...
0
votes
2answers
44 views
What is the difference between an IQueryable's Contains() and an IEnumerable's Contains()?
I have an IQueryable custs, a Customer cust, a CustomerComparer custCp which implements IEqualityComparer.
When I call custs.Contains(cust, custCp) I get an exception:
System.NotSupportedException: ...




