Currently to specify custom field types you need to pass those in to the ctor of AzureSearchIndex but this isn't the most developer friendly way to do this since it requires overriding quite a few things.
We need to make it easier for a developer to specify these custom field types. This could be via DI and have them injected per index, or it could be done by passing these customizations in to the Create.... methods (like we do for a custom analyzer).
Currently to specify custom field types you need to pass those in to the ctor of AzureSearchIndex but this isn't the most developer friendly way to do this since it requires overriding quite a few things.
We need to make it easier for a developer to specify these custom field types. This could be via DI and have them injected per index, or it could be done by passing these customizations in to the
Create....
methods (like we do for a custom analyzer).