ActiveReports 14 .NET Edition
ActiveReports 14 User Guide / Samples and Walkthroughs / Samples / Samples / Data Binding / Section Reports / LINQ
In This Topic
    LINQ
    In This Topic

    The LINQ sample demonstrates how to use LINQ in an ActiveReports report.

    ActiveReports report using LINQ

    ActiveReports report using LINQ

    Sample Location

    Visual Basic.NET

    ..\Samples14\DataBinding\Section\LINQ\VB.NET

    C#

    ..\Samples14\DataBinding\Section\LINQ\C#

    Run-Time Features

    This sample uses a LINQ Query to sort recordsets in descending order of age. The resultant recordsets are converted to an IList and used as a datasource for the report which is displayed in Viewer control.

     

    Project Details

    ViewerForm

    Displays the report output results. ToList method is set in DataSource property of the report to extract objects that use LINQ.

    rptLINQtoObject report

    The report DataSource is a list of Person constructor created from generic class. Creates a query to sort in descending order of Age.
    See Also