adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataSetProjector Class / ProjectObjectsToExistingDataSet Method
The DataSet to write the data to. This DataSet must already have the correct DataTables, created by an earlier call to CreateSchema or by loading the schema from XML.
The collection of objects to project.


In This Topic
    ProjectObjectsToExistingDataSet Method
    In This Topic
    Projects a collection of objects onto a DataSet.
    Syntax
    'Declaration
     
    
    Public Sub ProjectObjectsToExistingDataSet( _
       ByVal dataSet As DataSet, _
       ByVal sourceObjects As IEnumerable(Of ADTObject) _
    ) 
    public void ProjectObjectsToExistingDataSet( 
       DataSet dataSet,
       IEnumerable<ADTObject> sourceObjects
    )
    public:
    void ProjectObjectsToExistingDataSet( 
       DataSet^ dataSet,
       IEnumerable<ADTObject^>^ sourceObjects
    ) 

    Parameters

    dataSet
    The DataSet to write the data to. This DataSet must already have the correct DataTables, created by an earlier call to CreateSchema or by loading the schema from XML.
    sourceObjects
    The collection of objects to project.
    Remarks
    ProjectObjects creates a new DataSet with the specified dataSetName. The DataSet is filled with DataTables representing the objects in the sourceObjects collection.
    See Also