 | 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.4.1
Syntaxpublic Func<MemberInfo, string> GetAttributeName { get; set; }
Public Property GetAttributeName As Func(Of MemberInfo, String)
Get
Set
Property Value
Type:
FuncMemberInfo,
String
Examples
The default is this:
GetAttributeName = info => info.Name.ToLowerInvariant();
See Also