Hi.
I have a group of users sorted in a particular way and want to display the users as sorted using razor.
It is no problem to display the users as in DB or by name using Linq:
@foreach (LoopItem i in GetLoop("Item.Brugere").OrderBy(o=>o.GetString("UserManagement:User.Name")).ToList())
By how do I display the users as I intended in my user group sort?
Can’t seem to find anything in the forum, documentation or example code. Can I get a hint here?