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
Is your feature request related to a problem? Please describe.
Being able to pattern match on the field name would significantly add flexibility.
Currently, if you want to match all field names ending in "Id", there is no way to do this.
Describe the solution you'd like
Add an overload that takes an Expression<Func<string,bool>> and let the consumer decide if this field should be ignored/accepted/excluded/etc. Same can be done for the json path.
Describe alternatives you've considered
Regex, wild cards, glob pattern, etc.
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Being able to pattern match on the field name would significantly add flexibility.
Currently, if you want to match all field names ending in "Id", there is no way to do this.
Describe the solution you'd like
Add an overload that takes an
Expression<Func<string,bool>>
and let the consumer decide if this field should be ignored/accepted/excluded/etc. Same can be done for the json path.Describe alternatives you've considered
Regex, wild cards, glob pattern, etc.
Additional context
The text was updated successfully, but these errors were encountered: