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: 5.3.0
Syntax
public Func<MemberInfo, string> GetAttributeName { get; set; }

Property Value

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