or
namespace EntitySetTest
{
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using Telerik.Reporting;
using Telerik.Reporting.Drawing;
/// <
summary
>
/// Summary description for EntitySetReport.
/// </
summary
>
public partial class EntitySetReport : Telerik.Reporting.Report
{
public EntitySetReport()
{
//
// Required for telerik Reporting designer support
//
InitializeComponent();
Telerik.Reporting.EntityDataSource entityDataSource = new Telerik.Reporting.EntityDataSource();
entityDataSource.ObjectContext = typeof(SL_Lab1Entities);
Telerik.Reporting.Report report = new Telerik.Reporting.Report();
report.DataSource = entityDataSource;
table1.DataSource = entityDataSource;
}
}
}
entityDataSource.ConnectionString = "SL_Lab1Entites";
I have a textbox in my detail section that gets a value from a user function. I need to sum all of those textbox values in the report footer, but I can’t get it to work. Is there a way to use the SUM function on textbox values instead of data fields?