I have an extended entity (ContentCategoryExtendedEntity) whithe the following fields
- ContentId (physical)
- CategoryId (physical)
- LocalizedCategoryName (calculated)
- ...etc...
How do I sort on LocalizedCategoryName using LLBLGenDataSource (adapter)
i tried this:
dsContentCategory.SorterToUse = new SortExpression(new EntityProperty("LocalizedCategoryName") | SortOperator.Ascending);
but with error in casting...
TIA
Elias