Tag: campaign mangaement
Updating Data in a form between an Angular App and an API written in C#
If you have data in a form and you need to change the value of that data and save it off to a database, like the Azure SQL database I am using for my project, here’s a quick guide: Starting with the monster data in a form from the previous post: We need to be… Read more
How to send data between pages into a form with Angular
While developing my app I had a simple set up for getting my monster data. Originally I was sending a monster id with the expectation of making an api call with it from the page that would receive , but decided instead that since I was already getting a list of monsters for the monster… Read more
Entity Framework Inheritance and D&D Items (Dev blog 2)
I’m faced with a decision, I need to make tables for Items for my campaign manager. I wanted to start with a generic “Item” item, and inherit from it depending on the type of item it was. Looking into how Entity Framework wanted to handle it, I had basically two design options for doing this,… Read more