次の表があるとします。
LogID UserID Date Action
1 Bob 2013-05-23 13:30:27 1
2 Bill 2013-05-23 13:31:36 1
3 Bob 2013-05-23 13:32:45 2
4 Bill 2013-05-23 13:35:12 2
次に、 を作成し、列と列GridView
を入力します。Date
Action
Date Action
2013-05-23 13:30:27 1
2013-05-23 13:31:36 1
2013-05-23 13:32:45 2
2013-05-23 13:35:12 2
またはの下にまたはGridView
を表示するのではなく、それぞれまたはを表示するにはどうすればよいでしょうか?1
2
Action
Clock-In
Clock-Out
前もって感謝します!
これは私のクエリです (識別子は質問とは関係ありません)。ここにケースステートメントをどこに追加できますか?
var Entries = from entries in db.EmployeeTimeClocks
where entries.Date.Value.Day == DateTime.Now.Day &&
entries.UserId == AppCommon.Security.CurrentUser.UserId
orderby entries.ID descending
select entries;