I have designed a silverlight application using Visual Studio Lightswitch. I added a screen that shows the details screen. Looked at the code behind and tried to add.
partial void Application_initialize()
{
this.Details.ClientTimeout = 1000;
}
An error came out that it does not contain a definition for ClientTimeout and no extension method. My intention is to maintain a connection to my database and display the data in a details screen always.
How can maintain the connection even when idle?
Also the details was showing only 52 records instead of more 1000 records.