I have following class where a Post
can have many tags
public class Post
{
public string Title {get;set;}
public string Summary {get;set;}
public List<string> Tags {get;set;}
}
I would like to get all the Post
s grouped by tag
s if the a tag has at least 10 Post
associated with it.
Is it possible to do it efficiently in LiteDB
with the current class? I am open to ideas.