Remove Records

You can remove records with the Remove method of the Table class. This method removes all records that match a filter.

For example, to remove all records where the reference is equal to C:\data\file1.txt:

       docs.Remove(docs.Column("Reference") == @"C:\data\file1.txt");