L'esempio MSDN: Walkthrough: Manipulating Data (Visual Basic) (LINQ to SQL) contiene 2 errori che ne impediscono il funzionamento.
Dopo aver generato il sorgente "Northwind.Vb" tramite il comando "sqlmetal" se si seguono le istruzioni dell'articolo l'istruzione:
' Add the customer to the Customers table.
db.Customers.Add(newCust)
Va cambiata in:
' Add the customer to the Customers table.
db.Customers.InsertOnSubmit(newCust)
più avanti, l'istruzione che aggiorna il database:
db.SubmitChanges()
Va cambiata in:
db.Customers.Context.SubmitChanges()
Nessun commento:
Posta un commento