0

C# で Linq 式に変換しようとしている SQL があります。

助けていただけますか?

if (String.IsNullOrEmpty(alpha))
    sql = "select distinct(Keyword) as word, 
                  count(*) as Counter 
           from Keywords 
           group by keyword 
           order by keyword desc";
else
    sql = "select distinct(Keyword) as word, 
                  count(*) as Counter 
          from Keywords 
          where starts = N'{0}' 
          group by keyword 
          order by keyword desc";

同じクエリで個別とカウントがあることはわかっていますが、それを行う方法を理解できる良い方法はありませんか? これに対してLinQ式を書くにはどうすればよいですか?

4

2 に答える 2

1

次の 3 つの部分で構成できます。

IEnumerable<Keyword> query = db.Keywords;

if(String.IsNullOrEmpty(alpha))
    query = query.Where(k => k.starts == alpha)

// need to change from Keyword collection to anonymous type collection
var query2 = query.GroupBy(k => k.Keyword)   
                  .Select(g => new {
                                   word = g.Key,
                                   Counter = g.Count()
                                   }
                         );
于 2013-10-30T16:33:06.383 に答える
1
       int? startFilter = 10;


        var test1 = items.Where(i => startFilter.HasValue == false || i.Starts == startFilter.Value)
                         .GroupBy(i => i.Keyword).Select(grp => new { Keyword = grp.Key, Count = grp.Count()})
                         .ToList();
于 2013-10-30T16:39:43.853 に答える