ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Query Class / DataSourceName Property
Example

In This Topic
    DataSourceName Property
    In This Topic
    Gets or sets a name of the data source against which the query will be executed.
    Syntax
    'Declaration
     
    Public Property DataSourceName As String
    public string DataSourceName {get; set;}

    Property Value

    A System.String value indicating the name of the data source.
    Example
    Query query = new Query();
    query.DataSourceName = "MyDataSource";
    See Also