0

我有一个实体 AllocatedContainers,它具有 InventoryContainerDetails 的外键。

当我执行下面的 linq 查询时,它返回 AllocatedContainers 中没有相关表条目的记录,但是当 AllocatedContainer 中应该有连接记录时,不会返回整行。想不通为什么?

这是类,注意与 AllocatedContainer 的虚拟关系

public partial class InventoryContainerDetail
{
    public InventoryContainerDetail()
    {
        this.AllocatedContainers = new HashSet<AllocatedContainer>();
    }

    public int Id { get; set; }
    public int InventoryContainerHeaderId { get; set; }
    public int ItemId { get; set; }
    public Nullable<int> ReceiptDetailId { get; set; }
    public decimal QtyInContainer { get; set; }


    public virtual InventoryContainerHeader InventoryContainerHeader { get; set; }
    public virtual Item Item { get; set; }
    public virtual ICollection<AllocatedContainer> AllocatedContainers { get; set; }
}

这是查询:

IQueryable<InventoryContainerDetail> containerDtlsToAllocateOLD = 
                repository
                    .SearchFor(
                        x => x.InventoryContainerHeader.FacilityId == intFacilityId
                        && x.ItemId == intItemId
                        && (x.QtyInContainer - x.AllocatedContainers.Sum(a => a.AllocatedQty)) > 0
                    )
                    .OrderBy(x => x.CreatedOn);

这提出了这个SQL:

SELECT 
[Project2].[Id1] AS [Id], 
[Project2].[Id] AS [Id1], 
[Project2].[InventoryContainerHeaderId] AS [InventoryContainerHeaderId], 
[Project2].[ItemId] AS [ItemId], 
[Project2].[ReceiptDetailId] AS [ReceiptDetailId], 
[Project2].[QtyInContainer] AS [QtyInContainer], 
[Project2].[CreatedById] AS [CreatedById], 
[Project2].[CreatedOn] AS [CreatedOn], 
[Project2].[ModifiedById] AS [ModifiedById], 
[Project2].[ModifiedOn] AS [ModifiedOn], 
[Project2].[C1] AS [C1], 
[Project2].[Id2] AS [Id2], 
[Project2].[AllocationNeedId] AS [AllocationNeedId], 
[Project2].[AllocatedContainerDetailId] AS [AllocatedContainerDetailId], 
[Project2].[AllocatedQty] AS [AllocatedQty], 
[Project2].[CreatedById1] AS [CreatedById1], 
[Project2].[CreatedOn1] AS [CreatedOn1], 
[Project2].[ModifiedById1] AS [ModifiedById1], 
[Project2].[ModifiedOn1] AS [ModifiedOn1]
FROM ( SELECT 
    [Project1].[Id] AS [Id], 
    [Project1].[InventoryContainerHeaderId] AS [InventoryContainerHeaderId], 
    [Project1].[ItemId] AS [ItemId], 
    [Project1].[ReceiptDetailId] AS [ReceiptDetailId], 
    [Project1].[QtyInContainer] AS [QtyInContainer], 
    [Project1].[CreatedById] AS [CreatedById], 
    [Project1].[CreatedOn] AS [CreatedOn], 
    [Project1].[ModifiedById] AS [ModifiedById], 
    [Project1].[ModifiedOn] AS [ModifiedOn], 
    [Project1].[Id1] AS [Id1], 
    [Extent4].[Id] AS [Id2], 
    [Extent4].[AllocationNeedId] AS [AllocationNeedId], 
    [Extent4].[AllocatedContainerDetailId] AS [AllocatedContainerDetailId], 
    [Extent4].[AllocatedQty] AS [AllocatedQty], 
    [Extent4].[CreatedById] AS [CreatedById1], 
    [Extent4].[CreatedOn] AS [CreatedOn1], 
    [Extent4].[ModifiedById] AS [ModifiedById1], 
    [Extent4].[ModifiedOn] AS [ModifiedOn1], 
    CASE WHEN ([Extent4].[Id] IS NULL) THEN CAST(NULL AS int) ELSE 1 END AS [C1]
    FROM   (SELECT 
        [Extent1].[Id] AS [Id], 
        [Extent1].[InventoryContainerHeaderId] AS [InventoryContainerHeaderId], 
        [Extent1].[ItemId] AS [ItemId], 
        [Extent1].[ReceiptDetailId] AS [ReceiptDetailId], 
        [Extent1].[QtyInContainer] AS [QtyInContainer], 
        [Extent1].[CreatedById] AS [CreatedById], 
        [Extent1].[CreatedOn] AS [CreatedOn], 
        [Extent1].[ModifiedById] AS [ModifiedById], 
        [Extent1].[ModifiedOn] AS [ModifiedOn], 
        [Extent2].[Id] AS [Id1], 
        [Extent2].[FacilityId] AS [FacilityId], 
        (SELECT 
            SUM([Extent3].[AllocatedQty]) AS [A1]
            FROM [dbo].[AllocatedContainers] AS [Extent3]
            WHERE [Extent1].[Id] = [Extent3].[AllocatedContainerDetailId]) AS [C1]
        FROM  [dbo].[InventoryContainerDetail] AS [Extent1]
        INNER JOIN [dbo].[InventoryContainerHeader] AS [Extent2] ON [Extent1].[InventoryContainerHeaderId] = [Extent2].[Id] ) AS [Project1]
    LEFT OUTER JOIN [dbo].[AllocatedContainers] AS [Extent4] ON [Project1].[Id] = [Extent4].[AllocatedContainerDetailId]
    WHERE (([Project1].[QtyInContainer] - [Project1].[C1]) > cast(0 as decimal(18))) AND ([Project1].[FacilityId] = 1) AND ([Project1].[ItemId] = 3027)
)  AS [Project2]
ORDER BY [Project2].[CreatedOn] ASC, [Project2].[Id1] ASC, [Project2].[Id] ASC, [Project2].[C1] ASC

这是存储库方法。请注意,我正在通过 .Include 诱导急切加载,希望它能够正常工作,但没有运气:

public override IQueryable<InventoryContainerDetail> SearchFor(Expression<Func<InventoryContainerDetail, bool>> predicate, Expression<Func<InventoryContainerDetail, bool>> orderbylinq = null)
        {
            if (orderbylinq == null)
            {
                return DbSet.Include("AllocatedContainers").Where(predicate);
            }
            else
            {
                return DbSet.Include("AllocatedContainers").Where(predicate).OrderBy(orderbylinq);
            }
        }
4

1 回答 1

0

Ok, actually it is working...I changed "&& (x.QtyInContainer - x.AllocatedContainers.Sum(a => a.AllocatedQty)) > 0" to this "&& (x.QtyInContainer - (x.AllocatedContainers.Count() == 0 ? 0 : x.AllocatedContainers.Sum(a => a.AllocatedQty))) > 0".

Thanks Ladislav for showing me that trick...you can then take that actual sql and paste it in SQL Server and help debug from there too, which is great

于 2013-03-22T20:46:38.930 回答