views:

223

answers:

1

Here is my code

 Using Context As New NotificationManagerEntities1
        Dim User = Context.Users.First()
        User.Firstname = "Shawn"
        User.Lastlogin = Today.Date
        Try
            Context.SaveChanges()
        Catch ex As Exception

        End Try

    End Using

This executes fine with no exceptions, but when i look at the table it still has the same orginal value.

Im using a .sdf database with vs 2008

A: 

you sure it's not throwing an exception? your try/catch clause appears to simply swallow the exception without surfacing it.

kdawg