I'm building a small blazor wasm app, to help me screening a large amount of data. In the server I have a SQL table that is filled by importing a very large excel, this is done weekly:
Then in the app, I need to pivot the data and filter it by latest dates, like this:
I have tried to research SQL pivot, but from what I read, I cannot use it like this, and I cannot change the incoming data format, since it comes from an excel exported from another app, and it is very large!
I hope someone can point me in the right direction, using SQL or entity-framework-core.
Thanks in advance!!