combit List & Label 29 - .NET Help
combit.Reporting.DataProviders Namespace / DataProviderCollection Class / Add Method
The provider to add.
Example


In This Topic
    Add Method (DataProviderCollection)
    In This Topic
    Adds a new data provider to the collection.
    Syntax
    'Declaration
     
    
    Public Sub Add( _
       ByVal item As IDataProvider _
    ) 
    public void Add( 
       IDataProvider item
    )
    public:
    void Add( 
       IDataProvider^ item
    ) 

    Parameters

    item
    The provider to add.
    Example
    DataSet ds1 = CreateDataSet();
    DataSet ds2 = CreateOtherDataSet();
    
    // combine the data from ds1 and ds2 into one datasource
    DataProviderCollection providerCollection = new DataProviderCollection();
    providerCollection.Add(new AdoDataProvider(ds1));
    providerCollection.Add(new AdoDataProvider(ds2));
    LL.DataSource = providerCollection;
    LL.Design();
    Requirements

    Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
    .NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8

    See Also