Tagged Questions
11
votes
3answers
2k views
Entity Framework & LINQ To SQL - Conflict of interest?
I've been reading on the blogosphere for the past week that Linq to SQL is dead [and long live EF and Linq to Entities]. But when I read the overview on MSDN, it appeared to me Linq to Entities ...
6
votes
6answers
6k views
Linq to Entities vs ESQL
When using the Entity Framework, does ESQL perform better than Linq to Entities?
I'd prefer to use Linq to Entities (mainly because of the strong-type checking), but some of my other team members ...
4
votes
1answer
147 views
Converting ESQL to LINQ to Entities. Sort by related entities
I am using EF + RIA and unfortunately meet some problems with sorting by related entities.
For such purpose there is ESQL query that I implemented (found only this solution):
var queryESQL = ...
2
votes
2answers
634 views
Entity Sql for a Many to Many relationship
Consider two tables Bill and Product with a many to many relationship. How do you get all the bills for a particular product using Entity Sql?
1
vote
2answers
153 views
Viewing Entity SQL produced by Linq-to-Entities
Is there a way I can view the Entity Sql (eSQL) that my Linq-to-entities queries are generating with EF framework (that is, not native SQL, but eSQL, if that makes sense?)
Thanks!
1
vote
2answers
409 views
Entity SQL Datetime Syntax error
Anyone know What is wrong with my syntax here? I am making dynamic eSQL Queries and running into an error when trying to make where condition for DateTime data type. This is the error:
The query ...
1
vote
1answer
297 views
Is writing eSQL database independent or not?
Using EF we can use LINQ to read data which is rather simple (especially using fluent calls), but we have less control unless we write eSQL on our own.
Is writing eSQL actually data store ...
1
vote
4answers
864 views
Entity framework (3.5): How to translate a certain LINQ query to eSQL?
I have the following LINQ query that I need to translate to Entity SQL /eSQL):
return (ObjectQuery<User>) from user in Users
where !user.Roles.Any(r => r.AnIntegerProperty < 0)
...
0
votes
0answers
185 views
Master child gridview without nested gridview
is it possible to make a master child gridview wihout using nested gridview?I am able to make a master child gridview by using nested gridview. But the performance is quite slow. I need to wait at ...
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 ...