Given a document that looks like this:
public class Post {
public string Title { get; set; }
public List<string> Tags {get; set;}
}
How do you create this linq query for the RavenDB linq provider.
from post in Posts
where post.Tags.Contains(someTag)
select post
1 Answer