0

我正在尝试从 SQL 中获取一些数据,但我无法使用 Linq 在 T-SQL 中完成这项工作:

select *
from MTRBatch MB
Inner Join MTR M on MB.Id = M.MTRBatchId
Inner JOIN MTRHeats MH on M.Id = MH.MTRId
LEFT OUTER JOIN Vendor V on MB.VendorId = v.Id
Inner Join Manufacturer MF on MB.ManufacturerId = MF.Id
Where MB.ManufacturerId = 1
AND MH.Heat = 'z01'

我需要所有的树,但需要使用那个过滤器。

我试试这个但没有用:

MTRBatches
.Include(x => x.MTRs.Select(m => m.MTRHeats))
.Include(x => x.Manufacturer)
.Include(x => x.Vendor)
.Where(x => (x.Manufacturer.Id == 1));
.Where(x => x.MTRs.Any(m => m.MTRHeats.Any(h => h.Heat == 'z01')));
4

1 回答 1

0

这应该会有所帮助;dataContext是您的实例的名称Entity Framework container

var result = dataContext.MTRBatches
    .Join(dataContext.MTRs,
        mb => mb.Id,
        mtr => mtr.MTRBatchId,
        (mb, mtr) => new{ Batch = mb, MTR = mtr })
    .Join(dataContext.MTRHeats,
        x => x.MTR.Id,
        mh => mh.MTRId,
        (x, mh) => new{ Batch = x.Batch, MTR = x.MTR, Heat = mh })
    .Join(dataContext.Vendors.DefaultIfEmpty(),
        x => x.Batch.VendorId,
        v => v.Id,
        (x, v) => new{ Batch = x.Batch, MTR = x.MTR, Heat = x.Heat, Vendor = v })
    .Join(dataContext.Manufacturers,
        x => x.Batch.ManufacturerId,
        mf => mf.Id,
        (x, mf) => new{ Batch = x.Batch, MTR = x.MTR, Heat = x.Heat, Vendor = x.Vendor, Manufacturer = mf})
    .Where(x => x.Manufacturer.Id == 1 && x.Heat.Heat == "z01");
于 2013-01-15T21:27:46.013 回答