Is there a way in SubSonic to update some columns of a table?
For instance
Dal.Users users = new Dal.Users();
users.UserId = user.id;
users.Email = user.email;
users.FirstName = user.firstName;
users.LanguageId = user.languageId;
users.LastName = user.lastName;
users.Password = user.password;
users.UserName = user.userName;
users.Data = user.data;
users.IsNew = (user.id == -1);
users.Save()
Is it possible for instance to comment out the line users.Password = user.password; so that this field will not be updated (but will also not be set to null in the database).