We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the sample YesSql.Samples.Hi , if i want to create an index for Tags to query blog posts.
public class BlogPost { public string Title { get; set; } public string Author { get; set; } public string Content { get; set; } public DateTime PublishedUtc { get; set; } public string[] Tags { get; set; } } context.For<BlogPostByTag>() .Map(blogpost => new BlogPostByTag { Tags = blogpost.Tags} ????? );
how should i set the IndexProvider ?
Thanks very much .
The text was updated successfully, but these errors were encountered:
You can return a list of BlogPostByTag, which will create a record per tag.
BlogPostByTag
Sorry, something went wrong.
Showcased in this PR: #439
No branches or pull requests
For the sample YesSql.Samples.Hi , if i want to create an index for Tags to query blog posts.
how should i set the IndexProvider ?
Thanks very much .
The text was updated successfully, but these errors were encountered: