Category: Dungeon Dex
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
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
Dungeon Dex: Dev blog 1
I am in the process of developing a dungeons and dragons campaign management app. I ran a campaign on roll 20 from 1 – 20, but I felt like the site left a lot to be desired. I’m going to build it using Angular as the front end and C# on the back. I’m going… Read more