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

PLinqServerModeSource.DegreeOfParallelism Property

Specifies the maximum number of parallel threads that will be started to process a query.

Namespace: DevExpress.Data.PLinq

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

[DefaultValue(null)]
public int? DegreeOfParallelism { get; set; }

Property Value

Type Default Description
Nullable<Int32> *null*

A nullable integer that specifies the maximum number of parallel threads that will be started to process a query.

Remarks

If the DegreeOfParallelism value is null, the number of threads is determined automatically (see ParallelEnumerable.WithDegreeOfParallelism<TSource>).

See Also