Hello support,
again, I got a problem with formulating a datasourcecriteria for the following:
C#class State {
public string Name { ... }
}
class StateTransition {
public State FromState { ... }
public State ToState { ... }
}
I show a DetailView for class StateTransition. FromState has a value assigned. For ToState, I must formulate a datasourcecriteria so that I get all States except the one that is assigned to FromState.
Can you help me?
Thank you,
Markus
My BO (StateTransition) has two references to the same other BO (State). The according properties are FromState and ToState.