Click or drag to resize

ConventionConfigurationGetAttributeName Property

Gets or sets a method that returns the attribute name for the given property or field. The default uses the member name and converts it to all lower case letters.

Namespace: SphinxConnector.FluentApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.0.0
Syntax
public Func<MemberInfo, string> GetAttributeName { get; set; }

Property Value

FuncMemberInfo, String
Example
The default is this: GetAttributeName = info => info.Name.ToLowerInvariant();
See Also