-2

linqについて本当に理解していませんが、このクエリを手伝ってくれませんか?

 SELECT   *
  FROM   attachment
 WHERE   create_date IN (  SELECT   MAX (create_date)
                             FROM   attachment
                         GROUP BY   document_id, attachment_type)

どうすればlinqステートメントに変更できますか。DataTableを使用しています。

申し訳ありませんが、attachment_id、document_id、attachment_type、create_dateの各フィールドを持つDataTableがあります。そして、私は本当にdt.Select()を使用することはできません:(

また、DataTableまたはDatarowに戻す必要があります

4

1 に答える 1

1

あなたの質問は本当に明確ではありませんが、私はこれがあなたが探しているものだと思います:

var orderedDocGroups = tbl.AsEnumerable()
.GroupBy(r => new
{
    DocID = r.Field<int>("document_id"),
    AttID = r.Field<int>("attachment_type"),
})
.Select(group => new{
    DocID = group.Key.DocID,
    AttID = group.Key.AttID,
    MaxCreationDateRow = group
        .OrderByDescending(r => r.Field<DateTime>("create_date"))
        .First()
}).OrderByDescending(x => x.MaxCreationDateRow.Field<DateTime>("create_date"));

foreach(var docGroup in orderedDocGroups)
{
    var docInfo = string.Join(", ", string.Format("document_id:{0} attachment_type:{1} create_date:{2}",
                    docGroup.DocID, docGroup.AttID, docGroup.MaxCreationDateRow.Field<DateTime>("create_date")));
    Console.WriteLine(docInfo);
}

どうすればデータ行に戻すことができますか?

// convert back to a DataTable only with the rows with max creationdate per group:
DataTable tblMaxCreationDate = orderedDocGroups
    .Select(g => g.MaxCreationDateRow)
    .CopyToDataTable();

上記をテストするためのサンプルコードは次のとおりです。

var tbl = new DataTable();
tbl.Columns.Add("attachment_id",typeof(Int32));
tbl.Columns.Add("document_id",typeof(Int32));
tbl.Columns.Add("attachment_type",typeof(Int32));
tbl.Columns.Add("create_date",typeof(DateTime));

var rnd = new Random();
for(int i=0; i < 10; i++)
{
    tbl.Rows.Add(i, rnd.Next(1, 5), rnd.Next(1, 3), new DateTime(2012, 07, 24, rnd.Next(1, 24), 0, 0));
}
于 2012-07-24T08:17:07.383 に答える