I have a SQL Server table which looks like this:
Month | Percentage
1 5
2 6
3 8
4 10
I would like to show this table in a Blazor view but pivoted such that it looks like :
Month 1 2 3 4
Percentage 5 6 8 10
I wanted to know if something like this is possible as I have never worked with pivots in c# before