TestStack.White.UIItems.ListViewRow cannot be selected normally. The method Select() doesn't work. For selection emultaion we use trick:
listViewRow.Focus();
listViewRow.Cells[0].Click();
But this trick works unstable. It is better add big delay between Focus() and Click():
listViewRow.Focus();
Task.Delay(1000).Wait();
listViewRow.Cells[0].Click();