Hi,
I'm working with a custom index builder and are adding stuff to the index like this:
var document = new IndexDocument
{
["ContentType"] = IndexContentType.PDF_CONTENT,
["AreaId"] = reader["PageAreaID"],
["ContentName"] = reader["Filename"],
["Language"] = language,
["PDFLink"] = LinkToFile(fileInfo.FullName),
["ContentText"] = fileConent,
["DirectoryFullName"] = fileInfo.DirectoryName
};
It all works fine.
What I cant figure out is how I should work with relations.
If I, for example, have a product that I index. How do I create relations to the product images. I would appriciate an example of this.
Regards / Aki