I'm using a UnitOfWork function to get items from my db like this:
var items = UnitOfWork.ConversationPosts.Query(postFilter).Take(10);
However, is there a way to get the first 10 unique items? I tried using a Linq function like this but I don't know how to use it properly:
var items= UnitOfWork.ConversationPosts.Query(postFilter).Take(10).Where(x =>x.id ___);