LLBLGen Pro: 2.5 final
SD.LLBLGen.Pro.ORMSupportClasses.NETxy.dll: 2.5.8.109
No exception
VS2005, C# self servicing, mssql server developer edition
Standard Templates
SystemRoleTableCollection sysRoleTables = new SystemRoleTableCollection();
IPredicateExpression filterOnRole = new PredicateExpression(
SystemRoleTableFields.RoleId == role.RowId);
sysRoleTables.GetMulti(filterOnRole);
//sysRoleTables.Sort(SystemRoleTableFields.RowId.FieldIndex,
// ListSortDirection.Descending);
systemRoleTableCollectionBindingSource.DataSource = sysRoleTables;
Hi, I've had a look at the related threads I could find and can't understand why this is not working. I recently upgraded from GenPro 1, where I needed to add SupportsSorting in order for the XtraGrid (DevEx 7.1) sorting to work when the column header was clicked.
I disabled this line because the property doesn't exist in 2.5, as far as I can tell this should simply work. I did wonder whether it had to do with presort and tried both sort at server and sort after fetch, however with no sorting at all I get the same result, I can select the rows in the grid correctly until I sort by column header then clicking on the second row will select the row that actually contains the original second item - jumping all over the grid.
Is there something I've missed?