or
IQueryHandler<TQuery, TResult>
<configSections> <section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" allowLocation="true" allowDefinition="Everywhere" /></configSections><controls> <add tagPrefix="TelerikReportViewer" assembly="Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" namespace="Telerik.ReportViewer.WebForms" /> <add tagPrefix="CR" assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" /></controls><httpHandlers> <add type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" path="Telerik.ReportViewer.axd" verb="*" /></httpHandlers><system.webServer> <handlers accessPolicy="Read, Execute, Script"> <add name="Telerik.ReportViewer.axd_*" type="Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" path="Telerik.ReportViewer.axd" verb="*" preCondition="integratedMode" /> </handlers></system.webServer>var bm = new System.Drawing.Bitmap("\\Logos\Image.bmp");picLogo.Value = bm;The first time I opened VS, I was able to see my custom business objects in the Configure Object Data Source dialog. However, now I'm not able to see any of the classes in the project in the Available data source types tab. I've re-installed several times and have made sure to build the project when changes are made and before running any of the wizards. I've added the following simple class which also does not show up in the list:
[System.ComponentModel.
DataObject(true)]
public class Car
{
public string Make { get; set; }
public string Model { get; set; }
public List<Car> GetCars()
{
return new List<Car>();
}
}
public static ReportSource GetReportSource(object dataObject){ var report = new TextReport(); report.DataSource = dataObject; return new InstanceReportSource { ReportDocument = report };}