Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

linq to sql Distinct and orderby

Tags:

c#

linq-to-sql

var result = table1.Join(table2, o => o.ProgramID, t => t.ProgramID, (o, t) => new { o.ProgramID, t.Program })
         .OrderBy(t => t.Program)
         .Distinct();

the above linq statement actually returns the correct result, but he sql generated (below) is not as simple as it could be

SELECT [t2].[ProgramID], [t2].[Program]
FROM (
    SELECT DISTINCT [t0].[ProgramID], [t1].[Program]
    FROM [table1] AS [t0]
    INNER JOIN [table2] AS [t1] ON [t0].[ProgramID] = [t1].[ProgramID]
    ) AS [t2]
ORDER BY [t2].[Program]

I would have thought the sql below is far cleaner but I'm not sure of the linq statement to achieve it.

select distinct 
    o.ProgramID, 
    t.Program 
from 
    table1 0 
    inner join table2 t on t.ProgramID = o.ProgramID 
order by t.Program

Thanks in advance

like image 431
Ian Avatar asked Nov 30 '10 21:11

Ian


2 Answers

I don't know if it will help, but you can try something like this;

var result = (from o in table1
              join t in table2 on o.ProgramID equals t.ProgramID
              orderby t.Program
              select new { o.ProgramID, t.Program }).Distinct();
like image 105
Alex Mendez Avatar answered Sep 20 '22 12:09

Alex Mendez


I tried this and that works:

var result = (from o in table1
              join t in table2 on o.ProgramID equals t.ProgramID
              select new { o.ProgramID, t.Program })
              .Distinct().OrderBy(t => t.Program)
                         .ThenBy(t => t.ProgramName)
                         .ThenBy(t => t.Description); 

First you do Distinct and then OrderBy, then OrderBy works.

like image 42
user1531040 Avatar answered Sep 20 '22 12:09

user1531040