0

在过去的几天里,我一直在为此苦苦挣扎,经过详尽的谷歌搜索,并没有设法弄清楚如何去做。我对 LINQ 和 C# 非常陌生。基本上,我正在尝试加入两个表,都是一个表,但是我尝试加入的列确实包含空值。然后将另一个表的子集加入该列。

我想要发生的是,在加入后,我从显示的第一个表中获取所有信息,而不是我现在得到的仅显示不为空的列的信息。

我知道这是一个特别优雅的解释,所以我将发布一些简化的 puesdo 代码:

tblAsset                    tblLookUps

AssetTag int                Domain String
Type int                    DomainID int
Model int                   Description String

因此,表中的信息将类似于:

100, 1, 1                   TYPE,  1, PC 
101, 1, null                TYPE,  2, Monitor 
102, 1, 2                   MODEL, 1, Old PC
103, 2, null                MODEL, 2, New PC
104, 2, null                MODEL, 3, Old Monitor
105, 2, 3                   MODEL, 4, New Monitor

所以我希望 LINQ 查询给我的是这样的

AssetTag Type TypeDescription Model ModelDescription
  100      1        PC          1        Old PC
  101      1        PC         null       null
  102      1        PC          2        New PC
  103      2      Monitor      null       null
  104      2      Monitor      null       null
  105      2      Monitor        3     Old Monitor

然而,目前 LINQ 返回:

AssetTag Type TypeDescription Model ModelDescription
  100      1        PC          1        Old PC
  102      1        PC          2        New PC
  105      2      Monitor       3      Old Monitor

所以很明显,当尝试加入时,如果值为 null 它会被遗漏,这当然我理解,但是我真的不在乎它是否为 null,所以很希望能够看到它!

我当前的 LINQ 如下所示:

  var AllAssets = from assets in dContext.tblAssets
                  join type in dContext.tblLookups.Where(x => x.Domain == "ASTYPE")
                       on assets.Type equals type.DomainID
                  join model in dContext.tblLookups.Where(x => x.Domain == "MODEL") 
                       on assets.Model equals model.DomainID
                  select new Asset
                  {
                   AssetTag = assets.AssetTag
                   TypeID = assets.Type
                   TypeDescription = type.Description
                   ModelID = assets.Model
                   ModelDescription = model.Description
                  }

  return AllAssets;

我试过摆弄 .DefaultIfEmpty() 和其他几件事,但我还没有设法解决它,感觉我已经达到了能力的尽头,任何提示或指针都会很棒!

4

1 回答 1

0
    var q = from a in tblAssets
            join l in tblLookUps on a.Model equals l.DomainID
            into tblAssettblLookUps
            from l in tblAssettblLookUps.DefaultIfEmpty()
            select new
            {
                AssetTag  = a.AssetTag,
                Type = a.Type,                    
                Model = a.Model
                ModelDescription = l.Description
            };

试试这样的查询。

于 2013-04-12T11:16:48.040 回答