To be more specific, If i am adding common Entity DataSource using Component class to the report then it crashes if report is opened.
public partial class EntityDataSource1 : Telerik.Reporting.EntityDataSource
{
public CompensationOfIndividualByFxRates()
{
InitializeComponent();
}
public EntityDataSource1 (IContainer container)
{
container.Add(this);
InitializeComponent();
}
}
But if I am adding entity datasource directly inside report in designer.cs file it does not crash.
Is there a way in which I can use common entity datasource and my VS2010 will not crash if I open the report and build the application.