Carly.TeamSail
❔ EntityFramework - How do I figure out what ORM expects?
I get an error:
No account.account_id found.So I changed my DB table from accountid to account_id. Now it works as expected. but how do i know in advance what the Database expects? This is EF Core related according to PostgreSQL devs (my DB provider). For example right now EF Core also expects
is_game_master
but i want it to just be gm
Thanks for your time! 16 replies
❔ UniTask / Unity - await/async connoisseurs wanted. Need help understanding
Is this correct?
I want to wait for Server (via CommsManager) to reply with
PlayerSelectionData[]
, after receiving that, I want to call UI_PlayerSelection.Instance.Init(psd);
BTW, UniTask is pretty much the same as C# Tasks, just a different keyword for example async void == async UniTaskVoid
.
CommsManager (method just for testing):
This seems to work... But I heard its incorrect, see replies below.
Thanks114 replies