I have the following problem.
I am added the following property interceptor, that works fine
[IbCore.AfterGet(EntityPropertyNames.MyProp)]
public void MyProp_AfterGet(IbCore.PropertyInterceptorArgs<MyClass, String> args) {
var value = args.Value;
if (!String.IsNullOrEmpty(value))
{ args.Value = GetDisplayValue(value);
}
}
and in SL I use the query with filter on this property
qry = from obj in MyData.MyClassContainer
where qry.MyProp == "xxx"
The query result is always empty whether I use for filtering ("xxx") "display" value or original "stored" value. What you can propose?