Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
linq クエリを使用して、特定の日付の 7 日間すべてを取得することは可能ですか?
他の方法を使用してリストを作成することもできますが、可能であれば 2 行の LINQ を使用するのが賢明だと考えました。
ありがとう
ハックだけど
IEnumerable<DateTime> getDays(DateTime date) { return Enumerable.Range(0, 7).Select(n => date.AddDays(-1 * n)); }
注:日付メソッドについてはテストしておらず、肯定的でもありません。