aspnet-116352-components-vertical-grid-concepts-binding-to-data-built-in-record-caching.md
The ASPxVerticalGrid control has a built-in cache that stores visible record data and allows the control to avoid additional data binding.
ASPxVerticalGrid copies field values of visible and invisible rows to an internal data collection contained in a hidden field. A page sends the hidden field values to the server with postback and callback data. On the server, this data is deserialized.
When ASPxVerticalGrid requires record data, the control attempts to load that data from the record cache. If all required records are available in the cache, ASPxVerticalGrid does not send a query to the database. Since the record cache contains only visible record data, this mechanism is effective exclusively if a record list on the current page does not change. For example, the record cache is particularly useful in the following scenarios when:
Sort, filter, and page operations cause new records to appear on a page. Record cache does not have data for new records and ASPxVerticalGrid sends a query to the database to obtain necessary data.
GetRecordValues(Int32, String[]) | Find...TemplateControlThese methods return record values. When you call these methods, ASPxVerticalGrid searches for a value in the record cache. If the required record data is found, data binding does not occur. ASPxVerticalGrid binds to a data source if the record cache is disabled or has no required data.GetRecordDataObject(Int32)This method return a record data object rather than record values. ASPxVerticalGrid does not store data objects in the record cache, therefore, these methods cause data binding even if the record cache contains required data.
Set the EnableRecordsCache property to false to disable the record cache. This option can be useful in the following cases:
If you bind a grid to an XPO or custom objects that use a referenced association, the control also tries to cache references. The caching operation is similar to the ToString method. Serialization of a custom object copies data record values from a data source into an internal data collection. However, object deserialization (restoration from string to object) raises an exception:
"TypeConverter cannot convert from System.String"
You can resolve the issue in the following ways: