I have a User object that has a collection of Items.
How can I randomize the Items so they dont' appear in the exact same order everytime.
I'm currently ordering by SortOrder (integer), but this will obviously be in the same order everytime.
@foreach(UserItems ui in Model.User.Items.OrderBy(x => x.SortOrder))
{
}