Code ignore list

Hello,

Quick question about the code generation ignore list. I'm currently making half of a page within Visual Studio so I am using the ignore list. Later, when everything works for that page, I want to switch back to the Radzen editor and remove the code ignore line. If I do this, will all of my code that I wrote be overwritten by Radzen?

Kind regards,

Chris

Hi @ChrisI,

Yes, all custom code will be overwritten if you remove the file from the code generation ignore list. If you don't want to happen you can use the *.razor.cs file which Radzen does not overwrite. However if you are updating the .razor file you should probably keep it in the ignore list. This is scenario Radzen does not support yet. What are the modifications you are currently trying to do?

Hello @korchev,

Thanks for the clear answer. I'm currently implementing realtime (via SignalR) reading from the database into a page. Later, I need to write some lines to the database (on the same page). Maybe I needed to implement the writing first. The SignalR is working within the .razor page. I think the next step is to get this code into the .razor.cs page.