Tagged Questions
3
votes
1answer
530 views
EF - Using Contains in ObjectQuery
Here is my situation:
I've got a m:n-relation between artists and events. What I'm trying to do is to get a IQueryable containing only events that include a certain artist. I'm using a repository for ...
2
votes
2answers
115 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 ...
2
votes
2answers
238 views
IQueryable returns null on invoking Count c#
I have a problem trying to get the count out of the following query:
var usersView = PopulateUsersView(); //usersView is an IQueryable object
var foo = usersView.Where(fields => ...
2
votes
3answers
2k views
How to use ObjectQuery with Where filter separated by OR clause
Could somebody help me to answer how to rewrite raw SQL filter WHERE (...) OR (...) with ObjectQuery bilder, please?
String queryRaw = "SELECT ls.LocaleName, ls.IsActive, ls.LocaleDescription " +
...
1
vote
1answer
57 views
ObjectContext Closed error when using Include?
I am trying to create a generic Get method for Entity Framework, with a dynamic Where and Include. I am using the code below, however when I try to access a Navigation Property that was in the Include ...
1
vote
2answers
238 views
Few GroupJoin in one query
I'm trying to write ObjectQuery with few consistent GroupJoin, it means that there should be one main table selection + few additional LEFT JOIN. I'm doing it as following, with SelectMany method, ...
1
vote
1answer
2k views
ObjectQuery, passing datetime in Where clause filter
How to pass in Date Time value here?
ObjectQuery<Item> _Query = ItemEntities.CreateQuery<Item>("Item");
_Query = _Query.Where("(it.StartDate >= 11/4/2009 5:06:08 PM)");
my sample ...
1
vote
3answers
1k views
Entity SQL compare datetime without milliseconds
I'm trying to fetch some records from MSSQL DB using EntityObject with EntitySQL query.
The field i'm using to filter is type of datetime.
The generated query projected without millisecond, to the SQL ...
1
vote
1answer
1k views
QueryObject Include Entity Framework [closed]
I have three tables: Scenarios, Components and Blocks. Blocks has a foreign key to ComponentId and Components has a foreign key to Scenarios.
Blocks also has a foreign key (TreeStructureId) to ...
0
votes
1answer
32 views
Server-side execution of Entity Framework Query combined with Stored Procedure
Is it possible to call a StoredProcedure from an ObjectQuery? Basically I want to dynamically build a query and execute it server-side. You can imagine each query to be part of a search where you can ...
0
votes
2answers
54 views
ObjectQuery to return object where a child object contains a set value
I have two classes, as follows:
public class Route
{
public ObservableCollection<Flight> Flights = new ObservableCollection<Flight>();
}
public class Flight
{
string airlineName;
...
0
votes
1answer
50 views
Find WLAN card in Windows 7
The below code works fine in Win XP til determine the WLAN Card, but in Windows 7 the wmiObjects count is zero.
Does anyone have any knowledge to get it working in Windows 7?
//Use ...
0
votes
2answers
131 views
Serialize Linq Results directly to JSON
I'm developing a WebService that excecute linq to sql db and put the results into a VAR variable. Then I wanna serialize the result inside VAR to json format using javascript serializer (c#). ...
0
votes
1answer
96 views
Query Object's elements in c#
I have a problem when i try to retrieve query results from object in c#.
I did a linq query that return object element and the i wanna get all elements value in c# (server side)...
I can't do this ...
0
votes
0answers
256 views
Help to manualy build an ObjectQuery Expression with Where and Count
I have a function that builds simple dynamic Expression for ObjectQuery Where Clause and it works well:
static Expression CreateExpression<TElement, TValue>(Expression<Func<TElement, ...