Tagged Questions
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 ...
1
vote
1answer
266 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 ...
0
votes
1answer
160 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
570 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
197 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
1answer
273 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
844 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 ...