Refresh database schema

Using MSSQL
Blazor Server .net 6.0

I needed to add a column to a table.

I expected to be able to:
make the changes to the db schema
in the radzen tool - refresh pages against the db ("infer")

What I actually observed was that the page (in this case a datagrid) did not in fact get regenerated with the new column.

In the end I had to delete the entire datasource and start again.

Have I missed something or is this expected?
Thanks,

Hi @ccre-support,

To update your pages with the additional database columns you should reinfer the data source (check the new property in the triee view) and manually add the new column/field to your pages with DataGrid and TemplateForm. You can regenerate all pages or individual page from the new schema however in this case you will loose any customizations.

1 Like