Hello,
I have a scenario like the following: many people enter a game at the same time, but the game is limited to 100 players. Given that example, how would I handle these two steps?:
1: Querying entry count to ensure it isn’t too large
2: Adding a player to the database’s entry collection
Using a traditional database with Entity Framework, I would just wrap it in a transaction scope, but I’m not sure about Squidex.
I’m using the .NET library.