Quidditch - Powered By PostgreSQL and ASP.NET
The article discusses the process of setting up a PostgreSQL database for a Quidditch-themed road trip game application using ASP.NET. It outlines the necessary steps for installing PostgreSQL, creating a database, and configuring Entity Framework to interact with the database. The author shares personal insights and encourages readers to try out the game and the accompanying score tracker.
- ▪The author has been studying ASP.NET and is building a Quidditch-themed road trip game application.
- ▪PostgreSQL is used as the persistent data store for the application.
- ▪Entity Framework is configured to facilitate communication between the .NET API and the PostgreSQL database.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 1504140) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Nolan Miller Posted on May 23 • Originally published at nolanmiller.me Quidditch - Powered By PostgreSQL and ASP.NET #postgres #asp #dotnet #learning As a software developer, it's important to work on your craft. That's why I've been studying ASP.NET for the past few months. In my last article I walk through how to set up an ASP.NET Minimal Web API. Today, I'll be building on that foundation, by adding a persistent data store, a la PostgreSQL.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).