QuickObjects.ObjectBase Send comments on this topic.
CaseConversion Property
See Also 
Akal.QuickObjects.ObjectBase Namespace > BaseBusinessObject Class : CaseConversion Property

CaseConversion

Used to determine if the business object will transform all its String field's case to Upper or Lower. By default the business object does not transform the String values held in the StringField's Value property.

It will reset the CaseConversion property of all the StringField objects held in the Fields collection with the passed in value.

NOTE: The conversion is only performed for Insert, Update statements and for any values being used in Search criteria. The Find method does not transform the field values returned from the database as this can severely affect the performance in case of a large result set being returned. Although Load method does not perform this conversion either but once the values are loaded into the StringField any values returned follow the CaseConversion property of that field.

Syntax

C# 
public CaseTypes CaseConversion {get; set;}

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also