Uploaded image for project: 'Ignite'
  1. Ignite
  2. IGNITE-7889

.NET: linq GroupBy and Where do not work together

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.1
    • 2.5
    • platforms

    Description

      The following code completely ignores the Where condition:

                      var groupByQuery2 = models.Where(m => m.Value.DateTicks < 10 && m.Value.Dirty.HasValue).GroupBy(m => m.Value.ContractId)
                          .Select(g => new KeyValuePair<string, int>(g.Key, g.Select(m => m.Value.Version).Min()));
      

      debugger shows SQL without WHERE:
      CacheQueryable [CacheName=someCache, TableName=MODEL, Query=SqlFieldsQuery [Sql=select _T0.CONTRACTID, min (_T0.VERSION) from "someCache".MODEL as _T0 group by (_T0.CONTRACTID), Arguments=[], Local=False, PageSize=1024, EnableDistributedJoins=False, EnforceJoinOrder=False, Timeout=00:00:00, ReplicatedOnly=False, Colocated=False, Schema=, Lazy=False]]

      Attachments

        Issue Links

          Activity

            People

              alexey.tank2 Alexey Popov
              alexey.tank2 Alexey Popov
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: