I added a DataSource to my project which has a few tables. If I right click a table in the "Data Sources" browser and click "preview data", in "select an object to preview" it says "timetrackerDataSet.Event.Fill" (Event is the name of the table). The problem is, I would like to make a similar call from the code:

timetrackerDataSet.Event.Fill....

But the only thing I am given with intellisense is

timetrackerDataSet.EventDataTable

And it doesn't seem to have any of the properties of a data table (the only available properties are GetDataTableSchema and GetTypedTableSchema).

How can I get at this as a normal DataTable?

Thanks,

Dave