Hi
I have a database which holds information about employee shifts, i would like to make a report showing one week of shifts using Telerik reporting.
I have no problem making a report that shows data like this
Name Shift
Morten 15-05-2008 15:00-18:00
Peter 18-05-2008 18:00-22:00
However i would like my result to be something like
Name Mondag Tuesdag Wednesdag Thursdag Friday Saturday Sonday
Morten 15:00-18:00 19:00-22:00
As you may conclude from this my table structure looks something like this
[employee_db] { employee_id, employee_name}
[shifts] { employee_id, shift_start, shift_end }
A secondary issue is that a person may even have two shifts on a single day.
How should this be solved ?
Using subreports for each person for each day ? (seems very inefficient)
Currently using Linq as a datasource.
I have a database which holds information about employee shifts, i would like to make a report showing one week of shifts using Telerik reporting.
I have no problem making a report that shows data like this
Name Shift
Morten 15-05-2008 15:00-18:00
Peter 18-05-2008 18:00-22:00
However i would like my result to be something like
Name Mondag Tuesdag Wednesdag Thursdag Friday Saturday Sonday
Morten 15:00-18:00 19:00-22:00
As you may conclude from this my table structure looks something like this
[employee_db] { employee_id, employee_name}
[shifts] { employee_id, shift_start, shift_end }
A secondary issue is that a person may even have two shifts on a single day.
How should this be solved ?
Using subreports for each person for each day ? (seems very inefficient)
Currently using Linq as a datasource.