I have this code to select a row from DGV.
if (row.Cells[1].Value.ToString().Equals(searchValue))
{
row.Selected = true;
break;
}
Is there anything like
%".$searchvalue."%
from sql to use in C#, so it would found seemingly entrances not only exactly ones?