I was wondering whether there are situation that's more advisable to use ESQL?

Generally, I find ESQL a PIA (specially with all the special cases where you need to fully qualify an entity type) & probably anything done using ESQL can be done through SQL or LINQ.

But I was wondering of situations where ESQL is a better fit for a solution or would have a competitive edge over using SQL or LINQ (either easier/faster to code, or better performance, etc)

So, what's the compromise here, when is it better to use each one of the three approaches in Querying over EF4?

link|improve this question

1  
Never? Performance of Entity framework is abysmal and DB queries are already slow, why slow the process even more? – Pavel UrbanĨík Dec 4 '10 at 21:30
5  
@Pavel UrbanĨík - care to back up that ridiculous statement with some info? – RPM1984 Dec 5 '10 at 1:59
feedback

3 Answers

I find that ESQL to be good for edge cases, for example: 1) Where it's just really hard to express something in LINQ. 2) For building very dynamic searches 3) If you want to use a database specific function that is exposed by the provider you are using.

Also, if you know Entity SQL, you will be able to express QueryViews and Model-Defined Queries.

Julie

link|improve this answer
+1 Thanks Julie, we hope to see you more here :) – Morteza Manavi Dec 5 '10 at 21:00
feedback

Just as what julie mentioned. Esql is required to write model defined funtions which in return can be used through LINQ to Entities Queries. Most cased you'll be using LINQ to Entities. One another case where you can't use LINQ TO Entities us when you want to build queries with store functions, either buit in or UDF. In this case esql is your only way in EF1 but in EF4 you can use its features to expose those functions to be used in LINQ. About performance, esql is performing better. but you might prefer productivity using Linq over performance gain using esql.

link|improve this answer
feedback
up vote 0 down vote accepted

I came across these pretty similar questions (which didn't show up when I typed mine, earlier) on stack over flow, I guess they have deeper discussions (though T-SQL is not mentioned a lot, but it's kinda pretty obvious though):

Note that the two questions are a bit "old" so you might validate some of data based on your current understanding of EF4

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.