Skip to main content
A newer version of this page is available. .

PLinqServerModeDataSource Class

A component that can be used as a PLINQ data source for the GridControl in Server Mode. Can be associated with any IEnumerable source.

Namespace: DevExpress.Xpf.Core.ServerMode

Assembly: DevExpress.Xpf.Core.v18.2.dll

Declaration

public class PLinqServerModeDataSource :
    PLinqDataSourceBase

Remarks

To support Parallel LINQ, you should specify the source collection for PLinqServerModeDataSource and bind the data source to the GridControl. The source collection must implement IEnumerable<T>. You should not provide the exact type of its elements, because the type is automatically evaluated at runtime. The source collection can be specified via the ItemsSourceDataSourceBase.ItemsSource or PLinqServerModeDataSource.ListSource property.

To learn more, see Binding to In-Memory Data Using PLINQ.

Inheritance

Show 12 items
Object
DispatcherObject
DependencyObject
Visual
UIElement
FrameworkElement
Control
DevExpress.Xpf.Core.DXDesignTimeControl
DevExpress.Xpf.Core.DataSources.SimpleDataSourceBase
ItemsSourceDataSourceBase
DevExpress.Xpf.Core.DataSources.PLinqDataSourceBase
PLinqServerModeDataSource
See Also