zoukankan      html  css  js  c++  java
  • LinqToEntities:Union IEqualityComparer

    转自:http://stackoverflow.com/questions/2296966/linq-to-entities-unions-distinct

    Q:

    I don't know how I can do several union with a distinct.

    When I use .Distinct with an IEqualityComparer an exception in threw :

    LINQ to Entities does not recognize the method 'System.Linq.IQueryable'

    My code is

    var union = query.Union(query1).Union(query2); 
    union = union.Distinct(new EqualityComparerTransaction()); 
    

    A:

    LINQ to Entities does not support the overload of Distinct which takes an IEqualityComparer. When you think about it, it really can't, because LINQ to Entities queries will be converted to SQL, and you cannot convert an interface reference to SQL.

    Therefore, you must either:

    1. Use the overload of `Distinct` which does not take any compare, or 
    2.  Bring both lists into object space and do the `Distinct` in LINQ to Objects, like this: 
     
    var union = query.Union(query1).Union(query2); 
    union = union.AsEnumerable().Distinct(new EqualityComparerTransaction()); 
    

    Naturally, the risk here is that you might bring too many records back from the DB server. You could also use both of these techniques in order to do a portion of the comparison on the server and another portion in object space.

  • 相关阅读:
    1.1 HTML5简介
    MATLAB基础知识——1.1MATLAB系统变量
    初识MATLAB
    Z-Stack
    [C语言]关于struct和typedef struct
    [Zigbee]定时器1
    常用数论算法
    SPFA&邻接表 PASCAL
    kruskal算法-Pascal
    懒惰的JY--关于遍历
  • 原文地址:https://www.cnblogs.com/yangfan/p/1720981.html
Copyright © 2011-2022 走看看