Can I change order on dynamicdata

180 Views Asked by At

In dynamic-data it is possible to change the order of items ? I have a list of topic and I want to modify (with coherance verification) the OrderId attribute, do you have a simple way to do it ?

1

There are 1 best solutions below

0
On

Yes, the DisplayColumnAttribute in DataAnnotations allows for a default sort column.

public DisplayColumnAttribute(string displayColumn, string sortColumn, bool sortDescending);