Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
465
Setting UltraDataSource as xamDataGrid datasource
posted

I would like to use UltraDataSource as xamDataGrid's data source but get the error message that

UltraDataSource 

 

_ultraDataSource = new UltraDataSource();
xamDataGrid.DataSource = _ultraDataSource;

Cannot implicitly convert type 'Infragistics.Win.UltraWinDataSource.UltraDataSource' to 'System.Collections.IEnumerable'. An explicit conversion exists (are you missing a cast?) 

I had the impression this should be possible since UltraDataSource implements IBindingList<>

What am I missing?

Many Thanks