A pagina 233 si parla dei valori dell'enumerazione LoadOption che viene utilizzata con il metodo DataRow.Load. I nomi dei possibili valori sono completamente sbagliati. I valori corretti, presi da MSDN, sono i seguenti:
1. OverwriteChanges: The incoming values for this row will be written to both the current value and the original value versions of the data for each column (sul libro è OverwriteRow).
2. PreserveChanges: The incoming values for this row will be written to the original value version of each column. The current version of the data in each column will not be changed (sul libro è PreserveCurrentValues).
3. Upsert: The incoming values for this row will be written to the current version of each column. The original version of each column's data will not be changed (sul libro è UpdateCurrentValues).
E' da notare che a pagina 305 si parla di nuovo dell'enumerazione LoadOption, ma questa volta i nomi dei membri sono corretti.