Tagged Questions
The objectquery tag has no wiki summary.
7
votes
2answers
1k views
How can i convert a DBQuery<T> to an ObjectQuery<T>?
I've got a DBQuery<T> which converts to an IQueryable<T> (this bit works fine). But then I'm trying to convert the IQueryable to an ObjectQuery .. which fails :-
public void Foo(this ...
3
votes
1answer
532 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
119 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
239 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
2answers
825 views
Entity Framework - how to join tables without LINQ and with only string?
I have a question about Entity Framework. Please answer if you know answer on this. I have such query :
String queryRaw =
"SELECT " +
"p.ProductName AS ProductName " +
"FROM ...
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 " +
...
2
votes
1answer
1k views
Returning IQueryable vs. ObjectQuery when using LINQ to Entities
I have been reading when using LINQ to entites a query is of type IQueryable before it is processed but when the query has been processed, it's no longer an IQueryable, but an ObjectQuery.
In that ...
2
votes
1answer
1k views
Entity framework - ObjectQuery return int property and assign it to variable
I need to get UserCarId(int) from this query and assign to int type variable.
int UserCarId;
Entities ctx = new Entities();
var query = from enq in ...
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
1answer
128 views
Linking separate attributes to the same table in Entity Framework / .NET MVC
I have spent hours trying to find an answer to this, and have come up empty.
I am completely new to .NET and MVC - I completed the MvcMusicStore tutorial and have now started working on a more ...
1
vote
0answers
352 views
What is recommended pattern to bind a WPF control to a LINQ to Entity query?
At the MSDN you can read the following:
We recommend that you not bind
controls directly to an ObjectQuery.
Instead, bind controls to the result
of the Execute method. Binding in this
...
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
258 views
LINQ to Entites and ObjectQuery
I have Person entity which has a 1 : N relationship with Person_Addresses (fields: PersonID, AddressID, ValidFrom). I want to get all Person records and associated Person_Addresses with only latest ...
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
33 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
57 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
60 views
ObjectQuery error when using STE and WCF
I received this error when i implement STE in EF4 and WCF
"Object mapping could not be found for Type with identity 'NorthwindModel.Customer'."
if I'm not using STE (in single project), this ...
0
votes
2answers
73 views
Flattening an Entity Framework objectquery result with includes
I'm trying to get to grips with Entity Framework and there is one thing that's really tripping me up. It doesn't help that I'm still not totally sure of the terminology, and I'm trying to avoid ...
0
votes
1answer
31 views
ObjectQuery as a parameter in ESQL
Assume I have 2 entities: Ent and SubEnt with N:1 relationship. So, there are navigation properties SubEnt.Ents and Ent.SubEnt. Also, I have some ObjectQuery defined:
ObjectQuery<SubEnt> se;
...
0
votes
1answer
53 views
problame filtering ObjectQuery.Include method fo permission business logic
I created middleware layer between the BL and the Entity Framework DAL for filtering the data by the user permission business logic in the application. My layer implements IObjectSet that have an ...
0
votes
1answer
51 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
132 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
140 views
EF4 How to create query with dynamic select and where statement
I am trying to create a some kind of dynamic loader for my models where I can specify which properties I need, the main purpose of it is to create a REST API which provides dynamic information as JSON ...
0
votes
1answer
97 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
1answer
414 views
Object Query pattern using EF 4 and repository pattern
A question regarding the repository pattern and query object pattern. I'm using EF 4 and have generated my POCO classes from my database model using the ADO.NET POCO Entity Generator in VS 2010. The ...
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, ...
0
votes
1answer
546 views
Get SQL commandtext and parameters from EntityFramework ObjectQuery
I have some queries that EF is unable to support: spatial, indexhints, etc. etc.
Most of the data however is EF friendly and I can use the linq provider.
Example:
I have Person, PersonAddress and ...
0
votes
1answer
252 views
ObjectQuery lambda expression for select inside select
i want to create query like this using lambda expression in ObjectQuery
SELECT *
FROM tableA
WHERE ID in (SELECT ID in tableB)
I try using
var histories = ...
0
votes
1answer
1k views
How do I avoid a circular reference while serializing Entity Framework class
I have an MVC-3 (RC1) application using Entity Framework 4.
I wish to return a JSON object from a controller action. This object is referenced by other objects, which obviously return the reference.
...
0
votes
1answer
192 views
How to execute an ObjectQuery<T>
Linq to Entities uses the ObjectQuery which implements IQueryable. I normally use the IQueryable methods to filter through my data but today I needed to create a special LIKE statement. The framework ...
0
votes
2answers
378 views
Can ObjectQuery.OrderBy() use NEWID()?
I found that Entity SQL support NEWID(), but does ObjectQuery support it as well?
http://msdn.microsoft.com/en-us/library/bb738616.aspx,
Can I write objectquery like:
...
0
votes
1answer
1k views
How to query Entities in Entity Framework 4
In VS2008, I think it is EF1.0, this works just fine.
string queryString = @"SELECT VALUE USERS FROM ProjectDBEntities.Users AS User
INNER JOIN ProjectDBEntities.Favorites AS F ON ...
0
votes
1answer
489 views
ObjectQuery<T> without Entity Framework
How to use ObjectContext and ObjectQuery<T> with my own classes and objects?
I.e. I don't want to use them with Entity Framework.
How can I do this?
0
votes
1answer
270 views
What happens when I'm casting an Linq to Entity query to ObjectQuery?
Simple question - what does this actually do?
var oq = (ObjectQuery<TEntity>)L2EQuery;
return ExecuteFirstorDefault<TEntity>(oq, MergeOption.AppendOnly);
It's partly from the book ...
0
votes
1answer
833 views
Working with the ObjectQuery Single Enumeration Challenge in Linq-To-Entities Entity SQL
I'm working on modifying this example:
Using advWorksContext As New AdventureWorksEntities
' Call the constructor that takes a command string and ObjectContext.
Dim productQuery1 As New ...