If I have a Strongly Typed DataSet that Visual Studio 2003 created for me, I (think I) should be able to do the following:
Given a Strongly Typed DataSet created with a Table named 'Names', which has two columns named 'FirstName' and 'LastName'...
dsContacts ds = new dsContacts();
DataRow dr = ds.Names.NewRow();
dr.FirstName = “John”;
dr.LastName = “Bowen”;
The problem I'm seeing is that Intellisense doesn't make the columns' names (FirstName, LastName) available. In fact, I can't figure out ANY way to list columns for the DataRow dr.
According to the Microsoft examples listed here and here, this sure seems like it should work...?