Views: 8.3K
Replies: 1
Archived
|
Sorting in Design Pattern Framework 4.0Hi am using V4 and have a question on sorting.
Lets say we have an entity of Employer which has LastName but my class Employer has it as Surname, The Framework works using the Mapper classes and converts Employer.LastName to Employer.Surname for CRUD, However as the sorting is handled by string values the UI would pass to service SortExpression 'Surname ASC', This will fail as sorting with the dynamicLinq class parses the string to find the value Surname but the entity cannot by sorted as it expects LastName. Am I missing something or is it an issue that needs refactoring? Regards Owain Owain Jones, Jan 13, 2011
|
|
Reply 1What ORM do you use?
I didn't get what in column name in database and what in entity? Anyway, I don't see an issue. Get data from database and sort by entity column name by Linq or what you have there. Rinat Mergenbaev, Jan 13, 2011
|