I have a web method:
public DataSet SyncedWall()
{
DataSet dst = dscomment;
dst.Tables[0].Rows[i][\"WallInfo\"] = \"my own modifi
Hurreeyyyyyy!!!
I've found the answer after scratching my head upto couples of hours. :P
Before returning the dataset just call for datasetObject.AcceptChanges();
and you're done.
So here is the code:
public DataSet SyncedWall()
{
DataSet dst = dscomment;
dst.Tables[0].Rows[i]["WallInfo"] = "my own modified value";
dst.AcceptChanges();
return dst;
}