0
votes
2answers
780 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 …
0
votes
Subsonic - Simple Query
was in same situation recently and came up with this:
TableCollection tablecollection = new TableCollection;
Comparison comp = Comparison.Equals;
tablecollection.Where(Table.Columns …
