• linq not in


    linq not in 查询 or join not in

    var query = from c in _opvRepository.Table
                            join a in _orderRepository.Table on c.OrderId equals a.Id
                            join p in _pvRepository.Table on c.ProductVariantId equals p.Id
                            join e in _productRepository.Table on p.ProductId equals e.Id                     
                            where a.CustomerId == customerId & !(from s in _productReviewRepository.Table select s.ProductId).Contains(a.CustomerId & p.ProductId)
                            select new CustomerChapter()
                            {
                                Name = p.Name,
                                ProdcutName = e.Name,
                                CreatedOn = a.CreatedOnUtc,
                                ProductId = p.ProductId,
                                Id = a.CustomerId,
                            };

    生成的sql 语句如下

    SELECT 
    [Filter2].[OrderId] AS [OrderId], 
    [Filter2].[Name] AS [Name], 
    [Extent4].[Name] AS [Name1], 
    [Filter2].[CreatedOnUtc1] AS [CreatedOnUtc], 
    [Filter2].[ProductId] AS [ProductId], 
    [Filter2].[CustomerId] AS [CustomerId]
    FROM   (SELECT [Extent1].[OrderId] AS [OrderId], [Extent2].[CustomerId] AS [CustomerId], [Extent2].[CreatedOnUtc] AS [CreatedOnUtc1], [Extent3].[ProductId] AS [ProductId], [Extent3].[Name] AS [Name]
     FROM   [dbo].[OrderProductVariant] AS [Extent1]
     INNER JOIN [dbo].[Order] AS [Extent2] ON [Extent1].[OrderId] = [Extent2].[Id]
     INNER JOIN [dbo].[ProductVariant] AS [Extent3] ON [Extent1].[ProductVariantId] = [Extent3].[Id]
     WHERE  NOT EXISTS (SELECT 
      1 AS [C1]
      FROM  ( SELECT 1 AS X ) AS [SingleRowTable1]
      WHERE 1 = 0
     ) ) AS [Filter2]
    INNER JOIN [dbo].[Product] AS [Extent4] ON [Filter2].[ProductId] = [Extent4].[Id]
    WHERE [Filter2].[CustomerId] = 1
    
  • 相关阅读:
    杂想
    验证码再次学习。(处理方法汇总)
    神经网络学习入门 -01
    基于本地文字提取的有效的定位和识别场景文字
    C#学习总结~~~
    Deep Learning!!!
    记事本也能批量更名
    家庭一台电脑多人上网方法
    基于 OS X Mavericks 系统
    关于中文编程是解决中国程序员效率的秘密武器的问题思考
  • 原文地址:https://www.cnblogs.com/sunShineJing/p/10382857.html
Copyright © 2020-2023  润新知