Open AndreaPiovanelli opened 3 months ago
https://github.com/OrchardCMS/Orchard/blob/6e4fefd873dc17a9b098493afbe511a614cce82e/src/Orchard.Web/Modules/Orchard.Fields/Fields/EnumerationField.cs#L14 If we do not add separators to the Value property of the field, queries seems to work as expected (using both Equals and Contains operators) and I haven't noticed any side effects.
It seems the changes weren't completely backwards-compatible. :(
Updating the StringFieldIndexRecord.Value
and/or StringFieldIndexRecord.LatestValue
entries in a migration is fairly simple, but we can also change the filter to use an additional condition to match the value both with and without the separators at the beginning/end.
I used Upgrade module to create a scheduled task to update EnumerationField values, because content items needed to be re-published to ensure infosets to be updated too. This may be moved to a migration to ensure the automatic upgrade of values and avoid the manual operation of a back office user, but this may be a little tricky because of circular dependencies between Orchard.Projections and Orchard.Fields. This is also a very long task, potentially.
I am still working on a viable solution to ensure query compatibility with the newer value format, because creating a new condition isn't really an acceptable solution, since most back office users usually lack the access to the query configuration options and, ideally, the "Equals" condition should still be the right one for single selection EnumerationFields.
If interested, you can find current work in progress on the branch https://github.com/LaserSrl/Orchard/tree/fix/enumerationfieldvaluesmigration, which is based on Laser's fork of Orchard but should give you an idea of what I am working on.
@BenedekFarkas in the same branch, I found a working solution to the "query" problem. I added a specific IFilterProvider that is almost identical to current ContentFieldsFilter, filtering the fields inside the "Describe" method to only work on EnumerationFields. Consequentially, I modified the original ContentFieldsFilter to exclude from its Describe method the EnumerationFields (https://github.com/LaserSrl/Orchard/blob/acda3e32b37370423cb8cac17c5f29adfe46cc7d/src/Orchard.Web/Modules/Orchard.Projections/Providers/Filters/ContentFieldsFilter.cs#L39).
The ApplyFilter function for the EnumerationFieldsFilter modifies the Value parameter of the context object to properly add ';' separator characters when needed (see https://github.com/LaserSrl/Orchard/blob/acda3e32b37370423cb8cac17c5f29adfe46cc7d/src/Orchard.Web/Modules/Orchard.Projections/Providers/Filters/EnumerationFieldsFilter.cs#L77). Since Category and Name parameters for the filter are the same as the original content fields filter, this solution works without a migration (old filters for EnumerationFields are now applied using the new provider).
The Upgrade procedure for the fields is needed to make everything work properly and has to be executed separately for each tenant. I excluded the upgrade of the values through a migration because the operation potentially involves thousands of content items for each tenant and may lock all tenants for a long time.
I released the branch on a test environment and will post a pr for the community as soon as possible.
Thanks for the update, I'll check get back to this towards the end of September (after Harvest).
Let's take a step back to have a clearer picture:
;
) even if a single value is selected, while Value remains empty. On the other hand, the single-select flavored editors operate with Value directly, so the value won't be surrounded with separator characters.What are our options?
Model.SelectedValues.FirstOrDefault()
instead of Model.Value
), I just tested and works fine and it addresses the original issue without changing anything about how data is stored.
However, regarding consistency, I'd consider changing the flavor of the editor from a single-select to multi-select one (or vice versa) a rare/edge case, so you also need to care of your data consistency too anyway. IMO that should be up to custom code, not Orchard.;
before they are passed to the projection filter (the filter editor field is tokenized), so that the Equals operator continues to work. However, that would require updating the all the content items that use an EnumerationField.What do you think?
BTW I'd encourage you all from Laser to join the Orchard Discord channel to discuss things not specific to issues/PRs and we can also get on a call to discuss your PRs.
Since the format values are now saved, the Equals clause in queries doesn't work anymore.
This is a side effect of #8789 , which saves the EnumerationField value in a different way then before, as shown by the following screenshot from Orchard_Projections_StringFieldIndexRecord table: As you can see, the new version of the Value column contains now the separator character ";" at the start and at the end of the actual value, even when only one value is selected. There are two topics to discuss about:
I add to the discussion @MatteoPiovanelli-Laser and @BenedekFarkas because they worked on the referenced pull request and @sebastienros who approved it.