I'm having issues with my Blazor Studio Trial. It only allows me to read data from my database. All other CRUD operations are unavailable, and it won't even create the pages for updating. Is this the normal behavior of the trial?
Adding the primary key fixed the issue. The only issue I'm trying to track down now is an error when I'm trying to write to the table.
New transaction is not allowed because there are other threads running in the session.
I used the 'Get' method for one table from my services to read a record and I'm trying to add the results of that to another table using the 'Create' method. I'm guessing I have to shut down the threads from the first 'Get' method, but I'm not sure how to do that because I'm still learning a bit of this.