Linq加入iquery,如何使用defaultifempty

时间:2013-10-10 10:54:57

标签: c# linq asp.net-mvc-4

我已经写了一个linq连接查询,我想取值,如果其中一个是空的...

代码:

var Details = 

UnitOfWork.FlightDetails
          .Query()
          .Join
          (
              PassengersDetails,
              x => x.Flightno,
              y => y.FlightNo,
              (x, y) => new
              {
                  y.PassengerId,
                  y.classType,
                  x.Flightno,
                  x.FlightName,
              }
          );

我想使用像..

这样的东西
"Above query".DefaultIfEmpty
(
    new 
    {
        y.PassengerId,
        y.classType,
        string.Empty,
        string.Empty
    }
);

FlightDetails类型为IdatarepositoryPassengerDetailsIQueryable本地变量结果。如何在PassengerId和Classtype中获得不包含flightnoflightname的结果?

1 个答案:

答案 0 :(得分:61)

你基本上想要做一个左外连接。您当前使用DefaultIfEmpty方法的方法是,如果整个列表为空,则提供单个默认条目。

您应该加入PassengerDetails并为每个乘客详细信息列表调用默认值(如果为空)。这相当于左外连接,它有点像这样:

var data = from fd in FlightDetails
           join pd in PassengersDetails on fd.Flightno equals pd.FlightNo into joinedT
           from pd in joinedT.DefaultIfEmpty()
           select new {
                         nr = fd.Flightno,
                         name = fd.FlightName,
                         passengerId = pd == null ? String.Empty : pd.PassengerId,
                         passengerType = pd == null ? String.Empty : pd.PassengerType
                       }