Runic Acorn
A blog about technology, programming, and gaming
Entity Framework Fundamental: How Foreign Keys work within your code
I am loving how much time Entity Framework (EF) is saving me in developing my database. It’s easy to abstract ideas into code and let it handle the SQL. I do worry a bit that I will start to get rust on my raw SQL knowledge, so I will have to make a note to…
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…
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…