Edit a record is slow if there are a lot of lookup tables

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
Andros
User
Posts: 111

Edit a record is slow if there are a lot of lookup tables

Post by Andros »

I have a table with records containing 30 fields with lookup table.
Whe I try to edit the record it is very slow, and I need to make it faster. Any idea?


MichaelG
User
Posts: 1095

Post by MichaelG »

You can enable lookup cache for the table in the Page_Load server event. For example:

SetUseLookupCache(true);


Post Reply