Problem in creating index using Meilisearch SDK 0.15.0 #752
miguelisidoro
started this conversation in
Feedback & Feature Proposal
Replies: 1 comment 1 reply
-
Hello Sorry it's not clear yet, we plan to make it clearer in a near future, but we don't handle support here. To get quickly help, we recommend to ask support of the community here, on our Discord Thank you very much for using Meilisearch |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
We are using https://www.nuget.org/packages/MeiliSearch/0.15.0 to interact with Meilisearch index when indexing content from our solution.
Our solution backend is implemented in C# (.NET 8).
The class we are using to hold the object that is as follows.
public class SearchItem
{
[DataMember(Name = "contentItemId")]
public string ContentItemId { get; set; }
}
When using this class, the index is not generated, although no errors are thrown in our solution.
If we change the class to:
public class SearchItem
{
[DataMember(Name = "contentItemId")]
public string ContentItemId { get; set; }
}
The index is correctly created with a _vectors field as I want.
Why is the first version of the class not creating any documents in the index?
I don't want to have a property class named _vectors in my C# class.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions