I need to run this:

Select Distinct(Role) From Member

on a datatable I loaded from an XML file. How do I do this when I am not running the database on a sql server to run the statement on, I tried the filter property of the dataview but that is only for the statements in the WHERE clause of a sql statement.

Chris