This question is locked. New answers and comments are not allowed.
Hi
I have a MVVM RIA services solution that contains the following query that populates a RadGridView.
_statusHistory =
new
QueryableDomainServiceCollectionView<Status>(_context, _context.GetStatusBySourceTableIDSourceTableNameQuery(_sourceTableID,_sourceTableName));
_statusHistory.LoadedData +=
new
EventHandler<Telerik.Windows.Controls.DomainServices.LoadedDataEventArgs>(_statusHistory_LoadedData);
On each query that has unique parameters it executes and the LoadedData event is thrown
But when a query runs again (ie using previously used parameters) the query does not run I can tell because the LoadedData event is never thrown. The results still contains the previous queries data set.
It seem that when data is loaded from the database it works but when the data is cached in the DomainContext it does not load.
I have tried many variations of this with no luck
I want to do serverside filtering
So my question is what am I missing or do I need to go about this a completely different way?