zoukankan      html  css  js  c++  java
  • 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
    
  • 相关阅读:
    浅析8种常用排序
    尾递归和线性递归
    线性表之顺序表
    安装minikube
    error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory
    fatal error: 'openssl/conf.h' file not found
    GraphQL 最突出的架构优势是什么?
    mac 安装 brew
    Clean Architecture
    sql优化
  • 原文地址:https://www.cnblogs.com/sunShineJing/p/10382857.html
Copyright © 2011-2022 走看看