Click or drag to resize
EntityFieldCoreCaseSensitiveStringHashCodes Field
Flag which will signal LLBLGen Pro to produce hashcodes for strings in entity fields using case sensitive hash code routines (true, default) or not (false). Setting this flag to false will mean that the hashcode produced from "Foo" will be the same as for "FoO" or "foo". Setting this flag has an effect on the field compare routine and prefetch path merge routine. Only set this flag to false if you're working with a case-insensitive database and pk-fk data differs on casing.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static bool CaseSensitiveStringHashCodes

Field Value

Type: Boolean
Remarks
You can also set this field by adding a key-value pair to the appSettings section of your application's config file. Use 'caseSensitiveStringHashCodes' as key and 'true' or 'false' as the value.
See Also