5.3 KiB
title | description | type | page_title | slug | tags | ticketid | res_type |
---|---|---|---|---|---|---|---|
ObjectDataSource Assembly Not Loaded by Standalone Designer | Learn how to troubleshoot which assemblies to add to the Standalone Report Designer folder when an ObjectDataSource assembly types are missing in the wizard. | troubleshooting | Standalone Designer cannot load assembly used by ObjectDataSource | objectdatasource-assembly-not-loaded-by-standalone-report-designer | 1453347 | kb |
Environment
Product | Progress® Telerik® Reporting |
Target Framework | .NET Framework |
The article is related to the Standalone Report Designer for the .NET Framework. For the Standalone Designer targeting the .NET 6 consider [Loading .NET 7 assemblies in the Standalone Report Designer for .NET]({%slug how-to-load-dot-net-7-assemblies-in-srd-dot-net%})
Description
The [Standalone Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/desktop-designers/standalone-report-designer/overview%}) for the .NET Framework may not recognize the main ObjectDataSource assembly even though the assembly is properly added to the designer folder and registered in its configuration file when this assembly depends on other assemblies.
Cause\Possible Cause(s)
The reason is that the Standalone Report Designer cannot find the external assemblies when trying to get the data source schema.
Solution
You may use Fuslogvw to investigate the issue. The idea is to see which dependencies the designer tries to load and eventually which ones cannot be found.
Here we demonstrate the approach step-by-step with an [ObjectDataSource]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/objectdatasource-component/overview%}) that utilizes EntityFrameworkCore version 3.1.1.
-
Start Fuslogvw in Developer Command Prompt for Visual Studio:
-
Setup Fuslogvw to record the failures in a custom folder, for example,
c:\temp
: -
Add the assembly (e.g.
ClassLibrary2
) with the DataSource/DataMember of the ObjectDataSource in the Standalone Report Designer folder and register it in the designer configuration file - [Extending Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/desktop-designers/standalone-report-designer/configuration/extending-report-designer%}) -
Open the Standalone Report Designer and start the [ObjectDataSource Wizard]({%slug telerikreporting/designing-reports/report-designer-tools/desktop-designers/tools/data-source-wizards/objectdatasource-wizard%}) to configure it. If
ClassLibrary2
is not discovered by the wizard, as shown below:the Fuslogvw should have logged a failure in the
{specified folder}\Default\Telerik.ReportDesigner.exe
, in our caseC:\temp\Default\Telerik.ReportDesigner.exe
. The particular log file isMicrosoft.EntityFrameworkCore, Version=3.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60.HTM
and indicates that this assembly was not found. -
Add the above assembly to the designer folder. You may check where to find the assembly in the assembly properties in the Visual Studio:
or in the folder where NuGet packages for the user are generally stored -
C:\Users\{username}\.nuget\packages\{packagename}\{version}\lib\{framework}
, for example,C:\Users\arabadzhiev\.nuget\packages\microsoft.entityframeworkcore\3.1.1\lib\netstandard2.0
.Some packages can be used globally on the machine and are stored in
C:\Program Files\dotnet\sdk\NuGetFallbackFolder\{packagename}\{version}\lib\{framework}
, for exampleC:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore\3.1.1\lib\netstandard2.0
. -
Close the designer and repeat steps 4-6 until the assembly is discovered by the designer.
Note that there may be other failures to discover assemblies logged by Fuslogvw. Those assemblies are used internally by the designer - you don't need to add them.
The FuslogvwLogs.zip file contains the ObjectDataSource-relevant logs for the example.
A screenshot of the entire log folder can be seen below:
See Also
- [ObjectDataSource]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/objectdatasource-component/overview%})
- Fuslogvw
- [Loading .NET 7 assemblies in the Standalone Report Designer for .NET]({%slug how-to-load-dot-net-7-assemblies-in-srd-dot-net%})