[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.SharedDataSet

SharedDataSet Class

Represents a shared dataset used across multiple reports.

Inheritance
SharedDataSet
Implements
Namespace: GrapeCity.ActiveReports.PageReportModel
Assembly: MESCIUS.ActiveReports.Core.Rdl.dll
Syntax
public sealed class SharedDataSet : IValidateable
Remarks

A shared dataset is a predefined dataset that can be used by multiple reports to ensure consistent data retrieval and reduce redundancy.

Examples
SharedDataSet sharedDataSet = new SharedDataSet();
sharedDataSet.SharedDataSetReference = "/SharedDataSets/SalesData";
sharedDataSet.QueryParameterCollection.Add(new QueryParameter { Name = "StartDate", Value = "=Parameters!StartDate.Value" });

Constructors

Name Description
SharedDataSet()

Initializes a new instance of the SharedDataSet class.

Properties

Name Description
QueryParameters

Gets a collection of query parameters used by the shared dataset.

SharedDataSetReference

Gets or sets the reference to a shared dataset.

Methods

Name Description
Validate(ValidationContext)

Validates the current state of the SharedDataSet object.

Extension Methods