We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1d1634 + a9a968d commit 6702b19Copy full SHA for 6702b19
src/Nest/Resolvers/PropertyNameResolver.cs
@@ -77,7 +77,7 @@ public string Resolve(MemberInfo info)
77
return null;
78
79
var name = info.Name;
80
- var resolvedName = name.ToCamelCase();
+ var resolvedName = _settings.DefaultPropertyNameInferrer(name);
81
var att = ElasticAttributes.Property(info);
82
if (att != null && !att.Name.IsNullOrEmpty())
83
resolvedName = att.Name;
0 commit comments