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.
月に基づいてテーブルから個別の学生 ID を取得する Linq クエリを作成する方法。
testet ではありませんが、DataTable の場合は次のようになります。
int year = 2013, month = 1; var test = db.AsEnumerable().Where(x => x.Field<DateTime>("Date").Year == year && x.Field<DateTime>("Date").Month == month).GroupBy(y => y.Field<id>("ids")).Select(z => z.First());