What is the point of the Field extension method on DataRow (for untyped DataTables)?
Here is a comparison of using Field or not using it.
with Field:
myRow.Field<Guid>("myColName")
without Field:
(Guid)myRow["myColName"]
I don't see any compelling improvement.