Hello,
is it possible to get filter functionalities on additional columns by using the HandleGetByQuery method? Lets say i have an endpoint like:
builder.AddMethod(Method
.Define("endpoint...")
.HandleGetByQuery("CCC_MyTable")
.WithResultColumns("CCC_MyColumn")
.WithCalculatedProperties(
new CalculatedProperty("CCC_AdditionalColumn", ValType.String, new PropertyValueProvider(AdditionalColumn)),
));
and i want to be able to setup a filter on CCC_AdditionalColumn like
[{ColumnName: 'CCC_AdditionalColumn', CompareOp: 'like', Value1: '%whatever%'}]
Is this somehow possible?