volume_up

A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More

AI OnAI Off

Sorting blogcollections

Hi

Is it possible to sort a BlogCollection by property, like you can sort a PageDataCollection with FilterPropertySort? I'm trying to find a nice way to sort blogs by their name.

/Peter

#55841
Dec 20, 2011 10:13
Vote:

I think Linq is your friend:

 
// Easy to sort using Linq
var blogs = MethodThatGetsBlogCollection();
var sortedBlogs = blogs.OrderBy(b => b.Header);

// If you cant use the IEnumerable sortedBlogs but need a BlogCollection, you have to loop...:
var sortedBlogCollection = new BlogCollection();
foreach (var blog in sortedBlogs)
{
sortedBlogCollection.Add(blog);
}

 

#55843
Dec 20, 2011 10:49

The Linq-expression did the trick. I have to study linq more, seems that it solves alot of problems. Thanks!

/Peter

#55846
Dec 20, 2011 11:45
error This thread is locked and should be used for reference only. Please use the Legacy add-ons forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.