Tables != Classes
Erik fights for the removal of [TableName] from primarykey-names and sets an equal sign between Table and Class.
His point about the ID field seems ok, but as I see it, this all boils down to setting a standard and keeping it. In my opinion the naming in the database is somewhat irrelevant because I usually like to have alternate propertynames in my code anyways. For example I always use codegen attributes with my typed datasets to prefix all columnnames with "Item" so that they appear consequetively in Intellisense (sucks to skim through all the elements for the DataRow to find the column named "Size"). Using codegen attributes for the columnnames also makes the code more resilient for database changes, and enables Erik to change "CustomerID" to "ID" in the database without any implications for the code other than a simple change in the XSD.
With regards to the dataset/datatable and OOP I feel that setting Table = Class is a dangerous simplification. A table or tables might often map directly to the Table Module [Fowler] pattern as a dataset, but in some cases Data Transfer Object [Fowler] constructed from database information (as a Custom Business Entity [MS Data Application Block] ) might be a better solution than Table Module. In .NET however, because of the serialization capabilities of the dataset, the Table Module works great as Data Transfer Object. Unless the structure is too large or complex that is.
If you're working with software reengineering Table Module usually becomes completely impossible when you have to handle old, patched and poorly formed database-structures and you have to abstract the Tables.
Constructing a class that is similar to a well-formed table as a Data Transfer Object makes sense in most green-field scenarios. This is because you get to define a comfortable table structure from day one, and the typed dataset that makes implementing Table Module a breeze. But saying that a Table is the same as a Class is too easy and removes the careful consideration that should be done when architecting an application.