Hi everyone.
I have an additional datastore connected to SQL Server.
I want to add a non-persistent property to my entity, that returns a computed non-persistent value.
Reading the documentation, it seems that the correct annotation is @JmixProperty (like @MetaProperty in CUBA).
So I added the following code to the entity:
@JmixProperty
public String testProp() {
return "TEST !!!";
}
When I add the computed value column to the DataGrid of the List View, I see the error “Property path ‘testProp’ is invalid for entity class…”
Thanks