LINQ中的外连接语句

时间:2012-06-04 19:01:30

标签: linq linq-to-sql

我正在尝试在LINQ中创建一个外连接语句,并且没有太多运气。我知道执行外连接需要两个步骤:

(1)将联接转换为与

的组联接

(2)如果连接的结果集为空,则对组使用DefaultIfEmpty()生成您期望的空值。

我一直在使用此代码作为示例:

var query = (from p in dc.GetTable<Person>()
join pa in dc.GetTable<PersonAddress>() on p.Id equals pa.PersonId into tempAddresses
from addresses in tempAddresses.DefaultIfEmpty()
select new { p.FirstName, p.LastName, addresses.State });

所以我试着这样做:

var outerJoin =

    from h in resultHours         
    join u in results on h.Key equals u.Key into outer
    from dictionary in outer.DefaultIfEmpty()
    select new { 

问题是intellisense无法识别select new {}语句中的任何内容。我试过你。而且,甚至是字典。

我可能遇到的问题是我正在尝试外连接两个词典。它似乎不喜欢这样,虽然这是我被告知我需要做的事情。我显然做错了什么或者没有理解。

我需要加入字典results.Unit with dictionary resultHours.Hours,因为我的输出在某些条件下缺少unitId字段。做外连接应该清除它。

以下是结果代码:

var results = 

    (from v in VDimUnit     
        join vf in VFactEnergyAllocation on v.UnitKey equals vf.UnitKey
        join vd in VDimGadsEvent on vf.GadsEventKey equals vd.GadsEventKey
        join vt in VDimTime on vf.TimeKey equals vt.TimeKey 
    where typeCodes.Contains(vd.GadsEventTypeCode)
    && vt.YearNum >= (year - 3) && vt.YearNum <= year       
    group vf by new {v.PlantId, v.PhysicalUnitId, v.NetDependableCapacity, v.NetMaximumCapacity, 
    vt.MonthNum} into groupItem     
    select new {groupItem.Key.PlantId, groupItem.Key.PhysicalUnitId, groupItem.Key.NetMaximumCapacity,
    groupItem.Key.MonthNum, PO_HRS = groupItem.Sum(
    x=> (float)x.AllocatedEnergyMwh / groupItem.Key.NetDependableCapacity),
            UO_HRS = groupItem.Sum(x=> (float)x.AllocatedEnergyMwh / groupItem.Key.NetDependableCapacity),
        Unit = groupItem.Count(), groupItem.Key}).ToDictionary(x=> x.Key, x=> x);

以下是resultHours的代码:

var resultHours = 

    (from vt in VDimTime
        join vf in VFactEnergyAllocation on vt.TimeKey equals vf.TimeKey         
        join vd in VDimGadsEvent on vf.GadsEventKey equals vd.GadsEventKey
        join v in VDimUnit on vf.UnitKey equals v.UnitKey       

    group vt by new {v.PlantId, v.PhysicalUnitId, v.NetDependableCapacity, v.NetMaximumCapacity, 
        vt.MonthNum} into groupItem
    select new {groupItem.Key.PlantId, groupItem.Key.PhysicalUnitId, groupItem.Key.NetMaximumCapacity,
        Hours = groupItem.Count(), groupItem.Key}).ToDictionary(x=> x.Key.ToString(), x=> x.Hours); 

目前这是我的输出方式。在我弄清楚如何进行外连接后,它会发生变化。

var finalResults = 

    (from r in results
    orderby r.Key.MonthNum, r.Key.PlantId, r.Key.PhysicalUnitId
    select new {Site = r.Key.PlantId, Unit = r.Key.PhysicalUnitId, r.Key.MonthNum, Numerator = r.Value.PO_HRS, Denominator = 
        resultHours[r.Key.ToString()], Weight = r.Key.NetMaximumCapacity, Data_Indicator = DATA_INDICATOR, 
        Budgeted = budgetedPlannedOutageHrs, Industry_Benchmark = INDUSTRY_BENCHMARK, Comments = comments, 
        Executive_Comments = executiveComments, Fleet_Exec_Comments = fleetExecComments});

我很茫然。我发现LINQ外连接示例在加入字典时不适用。

0 个答案:

没有答案