Tagged Questions
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
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
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
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
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
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
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
271 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 ...