What control should I use when wanting to display a list of record information (Name, ID #, date)? It is about 5 small columns, and I'll have many rows returned.
I'm using LINQ to grab the records I need from the database and have it currently in an IQueryable.
Can anyone suggest what WinForms control I should be using in this case (ListView, DataGridView, ListBox?
What is the standard for this use case?