minor tidy up

This commit is contained in:
Chris.Watts90@outlook.com 2018-05-30 13:32:24 +01:00
parent 5ba22c2fd3
commit cfec829d96

View File

@ -556,7 +556,7 @@ namespace SQLiteRepository
{ {
//TODO: I would probably prefer to do this manually.... //TODO: I would probably prefer to do this manually....
var resp = _connection.Query<GroupDb>("update GroupDb set GroupName=? where GroupId=?", group.Name, group.Id); var resp = _connection.Query<GroupDb>("update GroupDb set GroupName=? where GroupId=?", group.Name, group.Id);
//var resp = _connection.Update(groupDb);
return OperationResponse.UPDATED; return OperationResponse.UPDATED;
} }