Skip to main content
.NET 6.0+

InMemoryDataStore.RegisterCustomFunctionOperators(ICollection<ICustomFunctionOperator>) Method

Registers custom function operators.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public void RegisterCustomFunctionOperators(
    ICollection<ICustomFunctionOperator> customFunctions
)

Parameters

Name Type Description
customFunctions ICollection<ICustomFunctionOperator>

An ICollection<ICustomFunctionOperator> object which specifies the custom function operators to be registered.

Remarks

To learn how to implement and register custom function operators, refer to How to: Implement a Custom Criteria Language Function Operator.

See Also