Tagged Questions
0
votes
1answer
30 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
832 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 ...