Lekcja 3: Ładowanie definicji raportu z serwera raportów
Po utworzeniu projektu i generowane klas w schemacie RDL, można przystąpić do załadowania definicja raportu z serwer raportów.
Aby załadować definicja raportu
Dodaj pole private u góry ReportUpdater klasy (moduł, jeśli używasz Visual Basic) dla raport klasy.To pole będzie używane do utrzymania odwołanie do raportu, który jest ładowany z serwer raportów dla życia aplikacji.
private Report _report;
Private m_report As Report
Zastąp kod LoadReportDefinition() metoda w pliku Plik Program.cs (Module1.vb dla Visual Basic) z następującego kodu:
private void LoadReportDefinition() { System.Console.WriteLine("Loading Report Definition"); string reportPath = "/AdventureWorks 2008 Sample Reports/Company Sales 2008"; // Retrieve the report defintion // from the report server byte[] bytes = _reportService.GetItemDefinition(reportPath); if (bytes != null) { XmlSerializer serializer = new XmlSerializer(typeof(Report)); // Load the report bytes into a memory stream using (MemoryStream stream = new MemoryStream(bytes)) { // Deserialize the report stream to an // instance of the Report class _report = (Report)serializer.Deserialize(stream); } } }
Private Sub LoadReportDefinition() System.Console.WriteLine("Loading Report Definition") Dim reportPath As String = _ "/AdventureWorks 2008 Sample Reports/Company Sales 2008" 'Retrieve the report defintion 'from the report server Dim bytes As Byte() = _ m_reportService.GetItemDefinition(reportPath) If Not (bytes Is Nothing) Then Dim serializer As XmlSerializer = _ New XmlSerializer(GetType(Report)) 'Load the report bytes into a memory stream Using stream As MemoryStream = New MemoryStream(bytes) 'Deserialize the report stream to an 'instance of the Report class m_report = CType(serializer.Deserialize(stream), _ Report) End Using End If End Sub
Następnej lekcji
W następnej lekcji będzie napisać kod aktualizacji definicja raportu, która została załadowana z serwer raportów.See Lekcja 4: Programowo aktualizacji definicji raportu.
Zobacz także