2017-02-13 3 views

Antwort

1

Versuchen Sie, diese

var items = from log in context.tappServiceRecord       
      group log by log.EIC into grouped where grouped.Count()>1 
      select grouped.Key 
zu konvertieren

hoffen, dass dies für Sie arbeiten

0

hier :) Sie sind:

var res = _context.tappServiceRecord 
       .GroupBy(x => x.EIC) 
       .Where(x => x.Count(y => y) > 1)