Hi, I'm having problems adding filter parameters to the client context in a silverlight application. Here is how I am doing it:
dc5DN.CacheController.ControllerBehavior.AddScopeParameters("companyID", "test");
dc5DN.CacheController.ControllerBehavior.AddScopeParameters("sessionID", "test2");
var test4 =dc5DN.CacheController.ControllerBehavior.ScopeParameters.Current.Key;
when I break after the test4 variable is assigned, it is null. Why aren't the parameters being assigned? Also, the data that is returned from the sync service is not filtered (I've configured the filters on the server and in the sync config file). Is there
a way to set it so that it won't return any data if the scope parameters aren't set? Thanks!