I am evaluating XAF and AnalysisEditorWin module specifically.
I saw that as of 14.2 PivotGrid does support Server Mode (https://documentation.devexpress.com/#WindowsForms/CustomDocument17856)
How do I enable Server Mode for AnalysisEditorWin in XAF?
I have tried the below in AnalysisDataBindController descendant but data is not loaded
C#void analysisEditor_DataSourceCreating(object sender, DataSourceCreatingEventArgs e)
{
var objectSpace = (XPObjectSpace)ObjectSpace;
var linqServerModeSource = new LinqServerModeSource();
linqServerModeSource.QueryableSource = objectSpace.Session.Query<ObjectToBeAnalyzed>();
var analysisDataSource = new AnalysisDataSource(e.AnalysisInfo, linqServerModeSource);
e.DataSource = analysisDataSource;
e.Handled = true;
}
Thanks
Beka