I want to update 1 field from my database table. As you can see I am trying to assign the value vrednost to atrName. My error occurs on this line: R.+atrName+= How do I write that line correctly?
public bool UpdatePlayerVV(string ime, string atrName, string vrednost)
{
DataSet1.PlayersDataTable his = Adapter.GetDatapl2(ime);
if (his.Count == 0)
{
return false;
}
DataSet1.PlayersRow R = his[0];
if (vrednost == null) { }
else R.+atrName+= vrednost;
int rowsAffected = Adapter.Update(R);
return rowsAffected == 1;
}