Tagged Questions

1
vote
2answers
340 views

QueryObject Include Entity Framework

Hi, 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
0answers
3 views

Create ObjectQuery from a SPROC?

A function-import always creates an ObjectResult. What I want it an ObjectQuery, so I can use Include and load chilren in one transaction.
0
votes
0answers
5 views

Execute a Function mapping to a stored procedure and use “Include”?

Hello! I have a stored procedure that has a complex nested tables query and returns a table of 1 table type. I want, that when I excecute this function I should be able to use it like an ObjectQuery …
0
votes
0answers
7 views

ObjectQuery(Of T) from a SQL UDF that returns TABLE (Of T)?

Is there a way to create an ObjectQuery from a UDF, Then adding includes etc. to the ObjectQuery? Or I must execute the query by primitive ADO.NET SqlCommand, cuz then I will have to load the includes …
0
votes
1answer
52 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 …
0
votes
1answer
50 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
2answers
375 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 …
0
votes
1answer
69 views

What happens when I’m casting an Linq to Entity query to ObjectQuery?

Hi, 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
233 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 …