You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the problem including expected versus actual behavior:
The new generated api has some pain points on upgrading I felt might have been overlooked but would be easier on those upgrading.
The existing mappings had .Dynamic() but the new one requires you to specify an enum .Dynamic(DynamicMapping.True). I don't know why this couldn't just be the default. You are not going to do .Dynamic(DynamicMapping.None) as you would just omit it. I get there are other enum values but seems like those could be specified. We have tons and tons of theses that we had to bulk replace.
The same feedback goes for other areas like .TrackTotalHits(true) -> .TrackTotalHits(new TrackHits(true)))
Expected behavior
Smart defaults would go a long way to not breaking existing api's.
I don't know why this couldn't just be the default
For the Dynamic case:
Because the code generator does not know that this might be a good default to use 🙂
In our specification, we currently do not maintain "client defaults". This would be a requirement for generating "smart" code like the one you mentioned.
For TrackTotalHits:
This is similar to #8345 and boils down to the same issue #8347.
Elastic.Clients.Elasticsearch version: 8.15.6
Elasticsearch version: 8.15.1
.NET runtime version: 8.x
Operating system version: Any
Description of the problem including expected versus actual behavior:
The new generated api has some pain points on upgrading I felt might have been overlooked but would be easier on those upgrading.
The existing mappings had
.Dynamic()
but the new one requires you to specify an enum.Dynamic(DynamicMapping.True)
. I don't know why this couldn't just be the default. You are not going to do.Dynamic(DynamicMapping.None)
as you would just omit it. I get there are other enum values but seems like those could be specified. We have tons and tons of theses that we had to bulk replace.The same feedback goes for other areas like
.TrackTotalHits(true) -> .TrackTotalHits(new TrackHits(true)))
Expected behavior
Smart defaults would go a long way to not breaking existing api's.
Reference: FoundatioFx/Foundatio.Parsers#84
The text was updated successfully, but these errors were encountered: