Bonjour,

Je cherche une solution simple pour le tri d'un gridview dont la datasource est une IList<Objet>

IList<Contact> listeContact = _contactService.FindContactAll();

grdContacts.DataSource = listeContact;
grdContacts.DataKeyNames = new string[] { "Id" };
grdContacts.DataBind();

Merci de votre aide