0
votes
2answers
795 views
How do I update a change using SubSonic and MySQL
I was trying to TDD using SubSonic 2.1, MySQL and C# and when I got to testing updating an existing record using th …
1
vote
How do I update a change using SubSonic and MySQL
apparently the solution was, following Robs excellent advice above, to
User u = User.FetchByID(2);
u.Ulevel = ulevel;
u.save();
i was not too sure that the snippet …
