Hiho!
We're using the telerik web report designer in a .net framework v4.7.2 asp.net mvc project.
We separated out data objects to a library project and then referenced it via the web.config. It works as intended, both in the designer and during data retrieval, but to update the dll with more objects we have to restart the whole site.
We tried using a folder other than bin with the probing attribute and still have issues with telerik caching and the application locking the assembly.
We also tried playing with AssemblyResolve and custom AppDomain, but it doesn't seem to be a valid solution.
We can override the ReportDesignerControllerBase.GetTypes method to return a generated type list on the fly, but that's only for displaying them to the web designer.
Is there any way to override something like the default ObjectInstanceDataSourceResolver, so we can generate dynamic types and handle cache lifetime by ourselves?
Thanks!
We're using the telerik web report designer in a .net framework v4.7.2 asp.net mvc project.
We separated out data objects to a library project and then referenced it via the web.config. It works as intended, both in the designer and during data retrieval, but to update the dll with more objects we have to restart the whole site.
We tried using a folder other than bin with the probing attribute and still have issues with telerik caching and the application locking the assembly.
We also tried playing with AssemblyResolve and custom AppDomain, but it doesn't seem to be a valid solution.
We can override the ReportDesignerControllerBase.GetTypes method to return a generated type list on the fly, but that's only for displaying them to the web designer.
Is there any way to override something like the default ObjectInstanceDataSourceResolver, so we can generate dynamic types and handle cache lifetime by ourselves?
Thanks!