XPQueryExtensions.SingleAsync<T>(IQueryable<T>, CancellationToken) Method
Asynchronously gets the object from a selection if this selection has only one object. Otherwise, throws an exception.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Parameters
Name | Type | Description |
---|---|---|
query | IQueryable<T> | An XPQuery<T> that specifies a selection of persistent objects. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
cancellationToken | CancellationToken | null | A CancellationToken object that delivers a cancellation notice to the running operation. |
Type Parameters
Name |
---|
T |
Returns
Type | Description |
---|---|
Task<T> | A Task that returns the only object in a selection. |
See Also