Dato il codice sotto riportato sono riuscito a filtrarmi i dati di un dataset e a passarli in un datarow. Come faccio ora a passare i dati aggiornati al DataSet1.tavles("Order")?



codice:
Private Sub GetRowsByFilter()
    
    Dim table As DataTable = DataSet1.Tables("Orders")

    ' Presuming the DataTable has a column named Date.
    Dim expression As String
    expression = "Date > '1/1/00'"
    Dim foundRows() As DataRow

    ' Use the Select method to find all rows matching the filter.
    foundRows = table.Select(expression)

 
..........Come faccio ora a passare i dati aggiornati al DataSet1.tables("Orders")