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.v24.1.dll
NuGet Package: DevExpress.ExpressApp.EFCore
Declaration
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