Gosh, not sure where to start here.I'm learning VS2022, Net core 8, blazor, C# and SQL ... all at same time. it's a slog but interesting.however I'm stuck.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.
Id like to create a update view that brings all data from all tables into a single view , and 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 in C# to the view...., i just don't know where to start in sql
don't know where to start
have;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