LINQ 2 SQL, Wrong SQL Generation - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:29:17Zhttp://stackoverflow.com/feeds/question/421329http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/421329/linq-2-sql-wrong-sql-generation0LINQ 2 SQL, Wrong SQL GenerationSharePoint Newbie2009-01-07T18:02:36Z2009-01-08T21:50:49Z
<p>Hi,</p>
<p>Have a DB table with the structure <br />
Id (identity int), Company (string), Cluster (string), BU (string), Department (string),SalesPoint (string) <br /></p>
<p>The following Linq Query:<br />
var chEntities = from a in dataContext.CompanyHierarchies<br />
let parent = (dataContext.CompanyHierarchies.Where(ch => ch.Id == companyHierarchyId).Single())<br />
where <br />
(<br />
(a.Company == (parent.Company == null ? a.Company : parent.Company)) &&<br />
(a.Cluster == (parent.Cluster == null ? a.Cluster : parent.Cluster)) &&<br />
(a.Company == (parent.BU == null ? a.BU : parent.BU)) &&<br />
(a.Company == (parent.Department == null ? a.Department : parent.Department)) &&<br />
(a.Company == (parent.SalesPoint == null ? a.SalesPoint : parent.SalesPoint))<br />
)<br />
select new CompanyHierarchyEntity<br />
{<br />
Id = a.Id,<br />
Name = a.SalesPoint == null ? (a.BU == null ? (a.Cluster == null ? (a.Company) : a.Cluster) : a.BU) : a.SalesPoint,
CompanyHierarchyLevel = (CompanyHierarchyLevel)a.HierarchyLevel,<br />
Company = a.Company,<br />
Cluster = a.Cluster,<br />
BU = a.BU,<br />
Department = a.Department,<br />
Section = a.SalesPoint<br />
};<br /> </p>
<p>Generates the following SQL <br />
{SELECT <br />
(CASE <br />
WHEN [t0].[SalesPoint] IS NULL THEN <br />
(CASE <br />
WHEN [t0].[BU] IS NULL THEN <br />
(CASE <br />
WHEN [t0].[Cluster] IS NULL THEN [t0].[Company]<br />
ELSE [t0].[Cluster]<br />
END)<br />
ELSE [t0].[BU]<br />
END)<br />
ELSE [t0].[SalesPoint]<br />
END) AS [Name], [t0].[Id], [t0].[HierarchyLevel] AS [CompanyHierarchyLevel], [t0].[Company], [t0].[Cluster], [t0].[BU], [t0].[Department], [t0].[SalesPoint] AS [Section]
-------------Query Wrong After This, Company should be Comapny,Cluster, Bu, etc. but is Company in all cases
FROM [dbo].[CompanyHierarchy] AS [t0]<br />
WHERE ([t0].[Company] = (<br />
(CASE <br />
WHEN ((<br />
SELECT [t1].[Company]<br />
FROM [dbo].[CompanyHierarchy] AS [t1]<br />
WHERE [t1].[Id] = @p0<br />
)) IS NULL THEN [t0].[Company]<br />
ELSE (<br />
SELECT [t2].[Company]<br />
FROM [dbo].[CompanyHierarchy] AS [t2]<br />
WHERE [t2].[Id] = @p0<br />
)<br />
END))) AND ([t0].[Cluster] = (<br />
(CASE <br />
WHEN ((<br />
SELECT [t3].[Cluster]<br />
FROM [dbo].[CompanyHierarchy] AS [t3]<br />
WHERE [t3].[Id] = @p0<br />
)) IS NULL THEN [t0].[Cluster]<br />
ELSE (<br />
SELECT [t4].[Cluster]<br />
FROM [dbo].[CompanyHierarchy] AS [t4]<br />
WHERE [t4].[Id] = @p0<br />
)<br />
END))) AND ([t0].[Company] = (<br />
(CASE <br />
WHEN ((<br />
SELECT [t5].[BU]<br />
FROM [dbo].[CompanyHierarchy] AS [t5]<br />
WHERE [t5].[Id] = @p0<br />
)) IS NULL THEN [t0].[BU]<br />
ELSE (<br />
SELECT [t6].[BU]<br />
FROM [dbo].[CompanyHierarchy] AS [t6]<br />
WHERE [t6].[Id] = @p0<br />
)<br />
END))) AND ([t0].[Company] = (<br />
(CASE <br />
WHEN ((<br />
SELECT [t7].[Department]<br />
FROM [dbo].[CompanyHierarchy] AS [t7]<br />
WHERE [t7].[Id] = @p0<br />
)) IS NULL THEN [t0].[Department]<br />
ELSE (<br />
SELECT [t8].[Department]<br />
FROM [dbo].[CompanyHierarchy] AS [t8]<br />
WHERE [t8].[Id] = @p0<br />
)<br />
END))) AND ([t0].[Company] = (<br />
(CASE <br />
WHEN ((<br />
SELECT [t9].[SalesPoint]<br />
FROM [dbo].[CompanyHierarchy] AS [t9]<br />
WHERE [t9].[Id] = @p0<br />
)) IS NULL THEN [t0].[SalesPoint]<br />
ELSE (<br />
SELECT [t10].[SalesPoint]<br />
FROM [dbo].[CompanyHierarchy] AS [t10]<br />
WHERE [t10].[Id] = @p0<br />
)<br />
END)))<br />
}<br /></p>
<p>Has anyone else faced a siomilar issue?
Kind regards,</p>
http://stackoverflow.com/questions/421329/linq-2-sql-wrong-sql-generation/421366#4213662Answer by tvanfosson for LINQ 2 SQL, Wrong SQL Generationtvanfosson2009-01-07T18:10:40Z2009-01-07T18:10:40Z<p>I think this is your problem:</p>
<pre><code>(a.Company == (parent.BU == null ? a.BU : parent.BU)) &&
(a.Company == (parent.Department == null ? a.Department : parent.Department)) &&
(a.Company == (parent.SalesPoint == null ? a.SalesPoint : parent.SalesPoint))
</code></pre>
<p>Shouldn't it be:</p>
<pre><code>(a.BU == (parent.BU == null ? a.BU : parent.BU)) &&
(a.Department == (parent.Department == null ? a.Department : parent.Department)) &&
(a.SalesPoint == (parent.SalesPoint == null ? a.SalesPoint : parent.SalesPoint))
</code></pre>
http://stackoverflow.com/questions/421329/linq-2-sql-wrong-sql-generation/426146#4261460Answer by Noah for LINQ 2 SQL, Wrong SQL GenerationNoah2009-01-08T21:50:49Z2009-01-08T21:50:49Z<p>I rewrote your LINQ with the equivilant of a LEFT OUTER JOIN. I think something like this is what you're looking for. I can't really check the SQL generated as I don't have your DB.</p>
<pre><code>var chEntities = from a in dataContext.CompanyHierarchies
join parent in (from ch in dataContext.CompanHeirarchies
where ch.Id == companyHierarchyId
select ch) on
new {a.Company, a.Cluster, a.BU, a.Department, a.SalesPoint}
equals new {parent.Company, parent.Cluster, parent.BU, parent.Department, parent.SalesPoint}
into temp
from t in temp.DefaultIfEmpty()
select new CompanyHierarchyEntity
{
Id = a.Id,
Name = a.SalesPoint == null ? (a.BU == null ? (a.Cluster == null ? (a.Company) : a.Cluster) : a.BU) : a.SalesPoint,
CompanyHierarchyLevel = (CompanyHierarchyLevel)a.HierarchyLevel,
Company = a.Company,
Cluster = a.Cluster,
BU = a.BU,
Department = a.Department,
Section = a.SalesPoint
};
</code></pre>
<p>I guess you could add a .Single() after the Subquerie in the Join, but I'm not sure how that will affect your results.</p>
<p>Let me know if it works!</p>