I get this issue when using this new library:
Failed to execute 'add' on 'IDBObjectStore': Evaluating the object store's key path did not yield a value.
looking at the db created from:
new() {
Name = nameof(StoredFile),
PrimaryKey = nameof(StoredFile.FileId),
Indexes = new()
{
nameof(StoredFile.DiscussionId),
nameof(StoredFile.Base64Data)
}
}

but as you can see, no FileId is present in the table in an explicit way, only when clicking on the table name I get the key name, but that's it. Do you see what the issue could be?
I get this issue when using this new library:
looking at the db created from:
but as you can see, no
FileIdis present in the table in an explicit way, only when clicking on the table name I get the key name, but that's it. Do you see what the issue could be?