次のフィールドを持つテーブル「lasttraces」があります。
Id, AccountId, Version, DownloadNo, Date
データは次のようになります。
28092|15240000|1.0.7.1782|2009040004731|2009-01-20 13:10:22.000
28094|61615000|1.0.7.1782|2009040007696|2009-01-20 13:11:38.000
28095|95317000|1.0.7.1782|2009040007695|2009-01-20 13:10:18.000
28101|15240000|1.0.7.1782|2009040004740|2009-01-20 14:10:22.000
28103|61615000|1.0.7.1782|2009040007690|2009-01-20 14:11:38.000
28104|95317000|1.0.7.1782|2009040007710|2009-01-20 14:10:18.000
LINQ to SQL で、すべてのAccountId(日付が最も高いAccountId)の最後の最後のトレースのみを取得するにはどうすればよいですか?
各アカウントの最終日付のみが必要な場合は、これを使用します。
var q = from n in table
group n by n.AccountId into g
select new {AccountId = g.Key, Date = g.Max(t=>t.Date)};
レコード全体が必要な場合:
var q = from n in table
group n by n.AccountId into g
select g.OrderByDescending(t=>t.Date).FirstOrDefault();
これを行う簡単な方法を次に示します
var lastPlayerControlCommand = this.ObjectContext.PlayerControlCommands
.Where(c => c.PlayerID == player.ID)
.OrderByDescending(t=>t.CreationTime)
.FirstOrDefault();
また、この素晴らしいLINQの場所をご覧ください- LINQ to SQLサンプル
レコード全体が必要な場合は、ラムダ方式があります:
var q = _context
.lasttraces
.GroupBy(s => s.AccountId)
.Select(s => s.OrderByDescending(x => x.Date).FirstOrDefault());
次のようになります。
var qry = from t in db.Lasttraces
group t by t.AccountId into g
orderby t.Date
select new { g.AccountId, Date = g.Max(e => e.Date) };
これを行う簡単な方法を行ってください:-
次の情報を保持するために1つのクラスを作成しました
ArrayListオブジェクトに保存されているサイトのリストに移動します。また、次のクエリを実行して、レベルで降順に並べ替えました。
var query = from MyClass object in objCollection
orderby object.Level descending
select object
コレクションを降順に並べ替えたら、次のコードを記述して、最上行にあるオブジェクトを取得します
MyClass topObject = query.FirstRow<MyClass>()
これは魅力のように働きました。