Let's say I have a database table as shown below:
FileID | FileName | FileSize | Group
-------------------------------------
1 test.txt 100 Group1
2 test2.txt 100 Group1
3 test3.txt 100 Group2
What would be the best way to display this data with a MVC style representation:
Group 1
Table containing Group1 files
Group 2
Table containing Group1 files
What I get when I group the results by Group through the linq to sql query, how can I efficiently display file lists in sections.
Thanks for any input.
porter
source
share