R – Managing silverlight RIA services context lifetime

silverlightwcf-ria-services

I'm working on a line-of-business silverlight application and I need a piece of advice concerning managing RIA services context lifetime.

Application – afer a few simplifications – is build of one big tab control. At the beginning there are 2 tabs: customer list and invoice list. These are plain datagrids with filtering/sorting and that sort of stuff.
User can add/edit customer or invoice selecting a row and double-clicking. Then the new tab is created with details of customer or invoice. User can open many tabs with different customers/invoices. After editing, user can save and close tab or just abandon edit and close.

The question is how to deal with data contexts.

Should I create one for customerlist and one for invoicelist and when user opens a new tab, I simply bind customer/invoive dataobject to control? This has an advantage that I dont need to refresh grids after saving changes. EDIT: This has some drawbacks. User can refresh grid – and what will happen to open detail tabs? User can also filter grid so some records being edited can be removed from datactx?

The other way is to create datacontext per tabitem. This is more safe but I need to handle refreshing grid(s).

I have no idea which method is better or maybe there is another alternative?

Best Answer

Use one ObservableCollection list in each case and it will automatically update the datagrids when items are changed.

Related Topic