I have tried several times to create a new Telerik Report with with Visual Studio Report Designer. I am able to create reports that connect to a database using the SqlDataSource, however when I try and connect using the EntityDataSource, I end up with the report preview throwing one of two errors related to connection string and/or dbconnection.
1)I created a class library in a separate project complete with an EF6 edmx and dbcontext class. All went well.
2) I added an reference to the project in my Report library project. All went well
3) I created a new report with the designer and added an EntityDataSource using the wizard. It recognized my entity model gave me options for choosing the entity in the model I wanted to use.
4) I tried to flip to the Preview and Html Preview and get an error indicating "no connection string named "myentitiesname" could be found in the application config file.
5) I even tried adding the connection string to the project's app.config file with no luck.
From the reading online, it seems like I may need to manually configure the connection string /db context for the preview to work, but I am not sure exactly what is needed.