I can only insert the first line of record to a datagrid

Hi
For any auto generated datagrid, I can only insert the first line of record. And the record has the Id = 0. Everytime I insert a new record, it fails and saying duplicated Id.

To sovle it, I have to delete the record with Id=0, then I can inert record from Id=1 and the problem disappeared.

I am using the latest version of Radzen Blazor Studio on Mac

You might need to use auto increment primary keys otherwise you need to enter unique primary key every time you add record

I am using the auto increment primary key.
I found the problem, the problem is if I set the auto increatment start from 0, it will have such problem, but if set the increment start from 1. This problem gone.