Blazor Studio Trial DB Writing Issues

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?

Thank you,

Heather

Hi @Heather.Kent,

Make sure your tables have a primary key. Otherwise CRUD operations won't work and RBS won't generate any pages for them.

1 Like

Thank you! These are simple tables, without keys so that must be the issue. :slight_smile:

Heather

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. :slight_smile:

Heather