Skip to main content
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

EFCoreObjectSpace.CreateParseCriteriaScope() Method

Used to parse a CriteriaOperator from a string that contains references to persistent objects.

Namespace: DevExpress.ExpressApp.EFCore

Assembly: DevExpress.ExpressApp.EFCore.v23.2.dll

NuGet Package: DevExpress.ExpressApp.EFCore

Declaration

public override IDisposable CreateParseCriteriaScope()

Returns

Type Description
IDisposable

An IDisposable object used to restore persistent objects from a serialized string.

Remarks

The following example shows how to use this method.

using DevExpress.Data.Filtering;
using DevExpress.ExpressApp.EFCore;
// ... 
CriteriaOperator criteria;
using(IDisposable scope = objectSpace.CreateParseCriteriaScope()) {
  criteria = CriteriaOperator.Parse(filterString);
}
See Also