Can anyone point me to a good resource on working with the records themselves? More specifically consider: Code Snippet var queryCust = from c in dc.Customers select c; With queryCust I can set a DataGridView.DataSource, or iterate through the records and set controls to a specific element in Customers but how do I take a single record query like this: Code Snippet queryCust.First() for instance and iterate through the elements of the record and get the element name and the value of that element
Read More...