Dan
09/05/2024, 1:23 PMMike Chambers
09/05/2024, 11:06 PMD_Inventor
09/06/2024, 6:01 AMUmbracoContentIndex
, so you could try using that as a base class for your custom index. You don't even need to add populators or valueset builders or validators. It all happens automatically.
If, for some reason, you really don't want to do that, then the magic is in the interface IUmbracoContentIndex
. That is a marker interface that the standard populators of Umbraco actually look for. You can add that interface to your custom index insteadD_Inventor
09/06/2024, 6:02 AMDan
09/06/2024, 10:33 AMMike Chambers
09/06/2024, 10:38 AMWe always recommend that you use the existing built in ExternalIndex. You should then query based on the NodeTypeAlias instead of creating a new separate index based on that particular node type.
😆Dan
09/06/2024, 10:42 AMMike Chambers
09/06/2024, 2:16 PM