Skip to main content
All docs
V25.2
  • 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.v25.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