var item = context.Items
.Where(i => i.idItem == idItem)
.First();
in item of OnItemUpdated(item) the compiler states: "Cannot use local variable 'item' before it is declared.
This surely happen because I have a table named 'Items'. Do I have to change the name or will be fixed? Database is mine and I can change the name, unwillingly but I can. If the database was not mine could be a problem.
Hi,
I have run into the same error as I also have a table named Items.Has this made it onto the road map yet and if so is there a time frame for a fix?
I do not have a subscription yet, but my company is thinking about it depending on how this initial development goes.
as far as my application goes all I have done in Radzen is connect it to my PostgreSQL database and auto generate CRUD pages then hit run and it comes up with this error