there is a scope contain the master-detail table below:
order: OrderID, StoreID, MasterName
detail: DetailID, OrderID, DetailName
the master-detail table has a lot data, so i defined a filter parameter
serverTemplate.Tables["Sales.order"].FilterClause = "[side].[] = @StoreID";
so the client get their own orders, but the detail table don't have StoreID column, how can i sync the detail table which belong the order table?