0
var query = from detail in dsApp.AsEnumerable()
        join rate in dsRate.AsEnumerable()
        on detail.Field<string>("ApplicationName") equals
              rate.Field<string>("AppName")
        into g
        from h in g.DefaultIfEmpty()
        orderby  ...
        select new { A = detail, B = (h==null? 0: h.Field<int>("num")) };

上記のクエリの場合、B で注文するにはどうすればよいですか? ありがとう

4

1 に答える 1