Quantcast
Channel: Active questions tagged blazor - Stack Overflow
Viewing all articles
Browse latest Browse all 4839

Create a SQL update view that uses a dimension and a fact table?

$
0
0

I need to model a simple business process involving storing software licences, teams owning a licence and the licence expiry.

I think I need to create a dimension table for licence, same for teams, and a fact table for TeamLicence that stores the license from the dim and the team from the dim. The fact table has attributes such as cost, quantity, expiry date.

I'd like to create a update view that brings all data from all tables into a single view, and a Blazor component, showing licence name, team name, quantity, costs, expiry as a form. AND allow me to enter a new record that populates the licence and teams tables when new data is added

Is this possible, can you provide a steer?

I'm ok with Blazor and access using EF Core in C# to the view, I just don't know where to start in SQL.

I haven't managed to get any code working, unsurprisingly because I'm a noob, hence, any examples kindly provided just need to demonstrate the concept... I'll try to work out the full implementation and come back to you


Viewing all articles
Browse latest Browse all 4839

Trending Articles