I want to run a linq query that will return values to my custom DTO. This particular linq query will need to take into account joins from multiple tables, using switch case statements, count (*) and group by
This is the SQL version sample of the query I will need a LinQ equivalent of...
select
slm.SLType,
count(c.EStatID) as EStat,
COUNT(cpd.TrId) as Training,
COUNT(
CASE WHEN cpd.TrStat= 44 THEN 1
WHEN cpd.TrStat!= 44 THEN NULL
WHEN cpd.TrStat IS NULL THEN NULL
END) as TrainingComplete,
COUNT(
CASE WHEN cpd.CndAssess = 44 THEN 1
WHEN cpd.CndAssess != 44 THEN NULL
WHEN cpd.CndAssess IS NULL THEN NULL
END) as AssessmentComplete
from TabC c , TabCPD cpd, TabSLM slm
where cpd.SLid = slm.SLid
and c.Id= cpd.CID
and c.O_Id = 1
group by slm.SLType
It returns records in the following format. I have put each record as a new line with fields separated by commas. The numbers below are just as an example
TypeA, 0 , 1 , 1, 0
TypeB, 1 , 0 , 1, 0
I am trying to create a linq query in the format like the one below without much luck
var query =
from c in TabC, ......
select new MyCustomTableC_DTO
{
DTOproperty = c.MatchingTable property,....
}
MyCustomTableC_DTO will have a property for each field in the query. Any idea how to accomplish this? The query I will use to build a list of type MyCustomTableC_DTO
Thanks for your time...
c.,cpd.,slm.) to your query so we know what column belongs to what table? – Diego Feb 19 '12 at 19:24