Reputation: 115
I work with one application module which uses view object to manage database table. The problem occurs while this process:
Steps 1-5 are processed in deployed application. Funny thing is that after I redeploy the application and go to the step 5 it works! It seems that view object isn't updated properly, but I don't know where to make changes :)
Upvotes: 1
Views: 236
Reputation: 115
As usual, only one line of code solves the problem :) After I finish using AppModule I invoke
Configuration.releaseRootApplicationModule(appModule, true);
Upvotes: 1