Entity SQL Non-Quirkiness
Zlatko has been posting about one LINQ to Entities new feature included in the upcoming Beta 3, so I decided to take revenge and make a 100% Entity SQL post. Here is something I ran against the other day:
Let's assume we need to retrieve the Order with the maximum OrderID, which is a really awful way to get the ID of the order you just inserted! :)
In your everyday store-specific SQL, you can use a MAX() aggregate function in a subquery as a WHERE predicate. In Transact SQL, it should look like this:
SELECT *
FROM Products AS p
WHERE p.ProductID =(SELECT MAX(p2.ProductID)
FROM Products as p2);
So far, so good. If you have been playing a little with Entity SQL, you will probably guess how the equivalent Entity SQL would look like:
SELECT VALUE p
FROM Products AS p
WHERE p.ProductID =(SELECT MAX(p2.ProductID)
FROM Products as p2);
But if you run this query, what you get is this interesting exception:
System.Data.QueryException: Argument types 'Edm.Int32' and 'Transient.collection[Transient.rowtype[(_##groupAggMax2,Edm.Int32(Nullable=True,DefaultValue=))](Nullable=True,DefaultValue=)]' are incompatible for this operation, near WHERE predicate, line 1, column 60.
The subquery is actually returning a Transient.collection of a Transient.rowtype... Those are internal things, so for illustration purposes, let's turn to the LINQ perspective of life:
var query = from p in context.Products
select new { p.ProductID };int productID = query;
(Argh, this post is no longer 100% Entity SQL!)
No surprisingly, what you get is a compile-time exception:
Cannot implicitly convert type 'System.Linq.IQueryable<AnonymousType#1>' to 'int'.
Both exceptions are homologous, and for a text-based query language, Entity SQL happens to be very type-safe at its core. Standard SQL makes the basic assumption that it is ok to implicitly convert single-item collections of single-column projections to discrete scalars. We don't.
The basic theme in Version 1.0 of the Entity Framework is to build a solid foundation for the future. As a consequence, one thing we avoid doing is "magic" type conversions except when they make perfect sense (think union of projection queries with exactly the same shape). The motive: magic conversions tend to mine the stability and composability of the language.
That said, this buys us freedom to hand-pick certain implicit behavior in the future, if we find enough feedback and proof that it makes sense.
That's enough on the rationale. Now, how do I make it work? There are two approaches.
First:
SELECT VALUE p
FROM Products AS p
WHERE p.ProductID = MAX(SELECT VALUE p2.ProductID
FROM Products AS p2);
This one works because:
a) The SELECT VALUE returns the scalar itself, instead of a projection (rowtype) of the scalar.
b) MAX() operates on the collection of scalars returned by the subquery, returning a single maximum value that will be directly comparable (same type) as ProductID.
Second:
SELECT VALUE p
FROM Products AS p
WHERE p.ProductID = ANYELEMENT(
SELECT VALUE MAX(p2.ProductID)
FROM Products AS p2);
This works because:
a) The subquery will return a single-item collection of a scalar value.
b) ANYELEMENT will retrieve a single element (in this case, the only one) contained in the collection. That element will be directly comparable with ProductID.
In case you are wondering now how efficient this is, don't worry. Entity SQL is still a functional language. So, while understanding the type reasoning is interesting and useful, these queries still express "what you want to get" rather than "how you want the job done".
As a matter of fact, with our current SqlClient implementation, these queries will be translated to some simple, yet unexpected Transact-SQL. But I'll leave that to you as an exercise...
Comments
Anonymous
November 29, 2007
Bienvenida a bordo Pingback from http://oakleafblog.blogspot.com/2007/11/linq-and-entity-framework-posts-for_26.html --rjAnonymous
December 19, 2007
Hi John, I started answering here but end up writting a new post to answer your question. Thanks! http://blogs.msdn.com/diego/archive/2007/12/20/some-differences-between-esql-and-linq-to-entities-capabilities.aspxAnonymous
May 14, 2009
The comment has been removedAnonymous
March 03, 2010
The comment has been removedAnonymous
March 08, 2010
The comment has been removedAnonymous
March 08, 2010
Hi again Csiga, Yet another way you can write the same query: SELECT c.ID, c.Description, c.ModelNumber, c.VersionNumber, c.InventoryRefNumber, c.SerialNumber FROM CMDB AS c WHERE c.Organization.ID IN (SELECT VALUE d.Customer.ID FROM Incidents as d WHERE d.ID = 4) Hope this helps, DiegoAnonymous
March 08, 2010
Thanks for your time (I really appreciate it), everything is clear now! Best regards, CsigaAnonymous
November 17, 2011
Can you please help to convert either of this querries in e sql.I have to give it in entity data source select NPI,FirstName,LastName,ProviderType,PrelimChecksLockedBy,City, NPI,FirstName,LastName,ProviderType,PrelimChecksLockedBy,City, from VPaymentYear_1_Details as G1 join(select NPI_YR,MAX(PaymentYear)as MostRecent from TApp_PaymentYear_1_Detail group by NPI_YR) as G2 on G2.NPI_YR=G1.NPI and G2.MostRecent=g1.PaymentYear where g1.KY_Status_Code=1 and g1.PaymentStatus=1 order by g1.NPI or select VPaymentYear_1_Details.NPI,VPaymentYear_1_Details.FirstName,VPaymentYear_1_Details.LastName,VPaymentYear_1_Details.ProviderType,VPaymentYear_1_Details.PrelimChecksLockedBy,VPaymentYear_1_Details.City, VPaymentYear_1_Details.PaymentYear from VPaymentYear_1_Details where VPaymentYear_1_Details.KY_Status_Code=1 and PaymentYear.PaymentStatus=1 and PaymentYear=(select MAX(TApp_PaymentYear_1_Detail.PaymentYear) from TApp_PaymentYear_1_Detail where VPaymentYear_1_Details.NPI=TApp_PaymentYear_1_Detail.NPI_YR )order by VPaymentYear_1_Details.NPI